-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.95 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
{
"name": "escomplex-plugin-syntax-estree",
"version": "0.1.0",
"homepage": "https://github.com/typhonjs-node-escomplex/escomplex-plugin-syntax-estree/",
"description": "Provides a plugin for typhonjs-escomplex module processing which loads syntax definitions for trait resolution for ESTree AST.",
"license": "MPL-2.0",
"main": "./dist/PluginSyntaxESTree",
"author": {
"name": "Michael Leahy"
},
"repository": {
"type": "git",
"url": "https://github.com/typhonjs-node-escomplex/escomplex-plugin-syntax-estree.git"
},
"maintainers": [
{
"name": "Michael Leahy",
"email": "support@typhonjs.io",
"url": "https://github.com/typhonrt"
}
],
"dependencies": {
"typhonjs-escomplex-commons": "^0.1.0"
},
"devDependencies": {
"sort-object": "^3.0.0",
"typhonjs-ast-walker": "^0.2.0",
"typhonjs-config-eslint": "^0.5.0",
"typhonjs-npm-build-test": "^0.7.0"
},
"scripts": {
"build": "babel-node ./node_modules/typhonjs-npm-scripts-build-babel/scripts/build.js",
"esdoc": "esdoc -c .esdocrc",
"eslint": "eslint .",
"prepublish": "babel-node ./node_modules/typhonjs-npm-scripts-publish/scripts/prepublish.js",
"test": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js",
"test-coverage": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha-istanbul.js",
"dev-test": "BABEL_ENV=escomplex-dev babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js dev_test",
"dev-test-coverage": "BABEL_ENV=escomplex-dev babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha-istanbul.js dev_test"
},
"keywords": [
"typhonjs",
"escomplex",
"plugin",
"syntax",
"definitions",
"estree"
],
"files": [
"dist",
"src",
".esdocrc",
"AUTHORS.md"
],
"directories": {},
"bugs": {
"url": "https://github.com/typhonjs-node-escomplex/escomplex-plugin-syntax-estree/issues"
}
}