UNPKG

1.16 kBJSONView Raw
1{
2 "name": "esutils",
3 "description": "utility box for ECMAScript language tools",
4 "homepage": "https://github.com/Constellation/esutils",
5 "main": "lib/utils.js",
6 "version": "1.1.6",
7 "engines": {
8 "node": ">=0.10.0"
9 },
10 "directories": {
11 "lib": "./lib"
12 },
13 "files": [
14 "LICENSE.BSD",
15 "README.md",
16 "lib"
17 ],
18 "maintainers": [
19 {
20 "name": "Yusuke Suzuki",
21 "email": "utatane.tea@gmail.com",
22 "web": "http://github.com/Constellation"
23 }
24 ],
25 "repository": {
26 "type": "git",
27 "url": "http://github.com/Constellation/esutils.git"
28 },
29 "devDependencies": {
30 "mocha": "~1.12.0",
31 "chai": "~1.7.2",
32 "jshint": "2.1.5",
33 "coffee-script": "~1.6.3",
34 "unicode-6.3.0": "~0.1.1",
35 "regenerate": "~0.5.4"
36 },
37 "licenses": [
38 {
39 "type": "BSD",
40 "url": "http://github.com/Constellation/esutils/raw/master/LICENSE.BSD"
41 }
42 ],
43 "scripts": {
44 "test": "npm run-script lint && npm run-script unit-test",
45 "lint": "jshint lib/*.js",
46 "unit-test": "mocha --compilers coffee:coffee-script -R spec",
47 "generate-regex": "node tools/generate-identifier-regex.js"
48 }
49}