-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"author": "fish <[email protected]> (https://github.com/fishbar)",
"name": "node-cube",
"description": "a new way to write js in browser",
"version": "4.0.0",
"homepage": "https://github.com/fishbar/cube",
"repository": {
"type": "git",
"url": "git://github.com/fishbar/cube.git"
},
"main": "index.js",
"bin": {
"cube": "./bin/cube"
},
"license": "MIT",
"scripts": {
"test": "node_modules/.bin/mocha --recursive --timeout 120000 -R spec test",
"testcov": "node_modules/.bin/mocha --recursive -r jscoverage --timeout 120000 --coverage 90,80,70 -R spec --covout=html test"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"@babel/generator": "7.9.4",
"@babel/parser": "7.9.4",
"@babel/traverse": "7.9.0",
"@babel/types": "7.9.0",
"async": "3.2.0",
"clean-css": "4.2.1",
"commander": "5.0.0",
"connect": "^3.7.0",
"debug": "4.1.1",
"esminify": "4.0.1",
"lodash": "4.17.15",
"serve-static": "1.14.1",
"xfs": "0.2.6"
},
"devDependencies": {
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"cube-babel": "^1.0.3",
"cube-lazy-parse": "*",
"cube-less": "*",
"cube-stylus": "*",
"expect.js": "0.3.1",
"jscoverage": "0.6.0",
"jsdom": "6.2.0",
"minami": "^1.1.1",
"mocha": "3.2.0",
"supertest": "3.0.0"
},
"optionalDependencies": {}
}