UNPKG

2.35 kBJSONView Raw
1{
2 "name": "esprima-fb",
3 "description": "Facebook-specific fork of the esprima project",
4 "homepage": "https://github.com/facebook/esprima/tree/fb-harmony",
5 "main": "esprima.js",
6 "bin": {
7 "esparse": "./bin/esparse.js",
8 "esvalidate": "./bin/esvalidate.js"
9 },
10 "version": "4001.3001.0000-dev-harmony-fb",
11 "files": [
12 "bin",
13 "test/run.js",
14 "test/runner.js",
15 "test/test.js",
16 "test/compat.js",
17 "test/reflect.js",
18 "esprima.js"
19 ],
20 "engines": {
21 "node": ">=0.4.0"
22 },
23 "author": {
24 "name": "Ariya Hidayat",
25 "email": "ariya.hidayat@gmail.com"
26 },
27 "maintainers": [{
28 "name": "Jeff Morrison",
29 "email": "jeffmo@fb.com",
30 "web": "https://www.facebook.com/lbljeffmo"
31 }],
32 "repository": {
33 "type": "git",
34 "url": "http://github.com/facebook/esprima.git"
35 },
36 "bugs": {
37 "url": "http://issues.esprima.org"
38 },
39 "licenses": [{
40 "type": "BSD",
41 "url": "http://github.com/facebook/esprima/raw/master/LICENSE.BSD"
42 }],
43 "devDependencies": {
44 "jslint": "~0.1.9",
45 "eslint": "~0.1.0",
46 "istanbul": "~0.1.27",
47 "complexity-report": "~0.6.1",
48 "regenerate": "~0.5.4",
49 "unicode-6.3.0": "~0.1.0",
50 "json-diff": "~0.3.1"
51 },
52 "scripts": {
53 "test": "npm run-script lint && node test/run.js && npm run-script coverage && npm run-script complexity",
54 "lint": "node tools/check-version.js && node node_modules/eslint/bin/eslint.js esprima.js && node node_modules/jslint/bin/jslint.js esprima.js",
55 "coverage": "npm run-script analyze-coverage && npm run-script check-coverage",
56 "analyze-coverage": "node node_modules/istanbul/lib/cli.js cover test/runner.js",
57 "check-coverage": "node node_modules/istanbul/lib/cli.js check-coverage --statement -8 --branch -28 --function 99.69",
58 "complexity": "npm run-script analyze-complexity && npm run-script check-complexity",
59 "analyze-complexity": "node tools/list-complexity.js",
60 "check-complexity": "node node_modules/complexity-report/src/cli.js --maxcc 31 --silent -l -w esprima.js",
61
62 "benchmark": "node test/benchmarks.js",
63 "benchmark-quick": "node test/benchmarks.js quick"
64 }
65}