forked from jquery/esprima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (75 loc) · 2.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "esprima",
"description": "ECMAScript parsing infrastructure for multipurpose analysis",
"homepage": "http://esprima.org",
"main": "esprima.js",
"bin": {
"esparse": "./bin/esparse.js",
"esvalidate": "./bin/esvalidate.js"
},
"version": "2.4.0",
"files": [
"bin",
"unit-tests.js",
"esprima.js"
],
"engines": {
"node": ">=0.10.0"
},
"author": {
"name": "Ariya Hidayat",
"email": "ariya.hidayat@gmail.com"
},
"maintainers": [{
"name": "Ariya Hidayat",
"email": "ariya.hidayat@gmail.com",
"web": "http://ariya.ofilabs.com"
}],
"repository": {
"type": "git",
"url": "https://github.com/jquery/esprima.git"
},
"bugs": {
"url": "https://github.com/jquery/esprima/issues"
},
"license": "BSD-2-Clause",
"devDependencies": {
"eslint": "~0.23.0",
"jscs": "~1.13.1",
"istanbul": "~0.3.16",
"escomplex-js": "1.2.0",
"regenerate": "~0.6.2",
"unicode-7.0.0": "~0.1.5",
"json-diff": "~0.3.1",
"node-tick-processor": "~0.0.2",
"coveralls": "~2.11.2"
},
"keywords": [
"ast",
"ecmascript",
"javascript",
"parser",
"syntax"
],
"scripts": {
"check-version": "node test/check-version.js",
"jscs": "jscs esprima.js && jscs test/*.js",
"eslint": "node node_modules/eslint/bin/eslint.js -c .lintrc esprima.js",
"complexity": "node test/check-complexity.js",
"static-analysis": "npm run check-version && npm run jscs && npm run eslint && npm run complexity",
"unit-tests": "node test/unit-tests.js",
"regression-tests": "node test/regression-tests.js",
"tests": "npm run unit-tests && npm run regression-tests",
"analyze-coverage": "istanbul cover test/unit-tests.js",
"check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100",
"dynamic-analysis": "npm run analyze-coverage && npm run check-coverage",
"test": "npm run tests && npm run static-analysis && npm run dynamic-analysis",
"profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor",
"benchmark": "node test/benchmarks.js",
"benchmark-quick": "node test/benchmarks.js quick",
"coveralls": "coveralls < ./coverage/lcov.info",
"downstream": "node test/downstream.js",
"travis": "npm test && npm run coveralls && npm run downstream",
"generate-regex": "node tools/generate-identifier-regex.js"
}
}