-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "esvalid",
"version": "1.1.0",
"description": "confirm that a SpiderMonkey format AST represents an ECMAScript program",
"main": "index",
"scripts": {
"test": "make lint test"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git@github.com:michaelficarra/esvalid.git"
},
"keywords": [
"esvalid",
"ECMAScript",
"ES262",
"SpiderMonkey",
"AST",
"validate",
"validator",
"valid"
],
"author": "Michael Ficarra",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/michaelficarra/esvalid/issues"
},
"homepage": "https://github.com/michaelficarra/esvalid",
"dependencies": {
"esutils": "^1.1.4",
"object-assign": "^0.3.1"
},
"devDependencies": {
"async": "0.9.0",
"coffee-script": "1.7.1",
"colors": "0.6.2",
"commander": "2.2.0",
"eslint": "^0.6.2",
"esprima": "^1.2.2",
"everything.js": "0.0.0",
"express": "4.4.4",
"istanbul": "^0.2.11",
"lodash": "2.4.1",
"mkdirp": "0.5.0",
"mocha": "^1.20.1",
"optimist": "0.6.1",
"request": "2.36.0",
"underscore": "1.6.0",
"xyz": "^0.4.0"
}
}