wallet-core/node_modules/esutils/package.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2016-10-10 03:43:44 +02:00
{
2016-11-03 01:33:53 +01:00
"name": "esutils",
"description": "utility box for ECMAScript language tools",
"homepage": "https://github.com/estools/esutils",
"main": "lib/utils.js",
"version": "2.0.2",
"engines": {
"node": ">=0.10.0"
2016-10-10 03:43:44 +02:00
},
2016-11-03 01:33:53 +01:00
"directories": {
"lib": "./lib"
2016-10-10 03:43:44 +02:00
},
2016-11-03 01:33:53 +01:00
"files": [
"LICENSE.BSD",
"README.md",
"lib"
],
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "utatane.tea@gmail.com",
"web": "http://github.com/Constellation"
}
2016-10-10 03:43:44 +02:00
],
2016-11-03 01:33:53 +01:00
"repository": {
"type": "git",
"url": "http://github.com/estools/esutils.git"
2016-10-10 03:43:44 +02:00
},
"devDependencies": {
"chai": "~1.7.2",
"coffee-script": "~1.6.3",
"jshint": "2.6.3",
"mocha": "~2.2.1",
"regenerate": "~1.2.1",
"unicode-7.0.0": "^0.1.5"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/estools/esutils/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "npm run-script lint && npm run-script unit-test",
2016-11-03 01:33:53 +01:00
"lint": "jshint lib/*.js",
"unit-test": "mocha --compilers coffee:coffee-script -R spec",
"generate-regex": "node tools/generate-identifier-regex.js"
}
2016-10-10 03:43:44 +02:00
}