-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (51 loc) · 1.39 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
{
"name": "jsm2c",
"version": "0.0.1",
"description": "将采用commonJS规范的模块化代码,转译成闭包形式的代码",
"main": "index.js",
"scripts": {
"debug": "supervisor --debug-brk ./debug.js",
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/mocha/bin/_mocha --recursive ./test",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly --recursive ./test/** && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smocean/jsm2c.git"
},
"keywords": [
"commonJS",
"module",
"closure"
],
"author": "guomilo <[email protected]>",
"engines": {
"node": ">0.10.0"
},
"bugs": {
"url": "https://github.com/smocean/jsm2c/issues"
},
"homepage": "https://github.com/smocean/jsm2c#readme",
"dependencies": {
"escodegen": "1.8.0",
"esprima": "2.7.2",
"esquery": "0.4.0",
"estraverse": "4.2.0",
"immutable": "3.8.1"
},
"maintainers": [
"guomilo <[email protected]>"
],
"directories": {},
"devDependencies": {
"autod": "2.5.1",
"chai": "3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.7.0",
"eslint-config-sm": "^0.1.20",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0"
},
"license": "MIT"
}