-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 1.64 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
{
"name": "transpile",
"description": "Transpiles JavaScript modules from one format to another.",
"version": "2.8.0",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"web": "http://bitovi.com/"
},
"dependencies": {
"ast-types": "^0.15.2",
"babel-standalone": "^6.26.0",
"comparify": "0.2.0",
"escodegen": "^2.0.0",
"esprima-next": "^5.8.2",
"estemplate": "^0.5.1",
"estraverse": "^5.3.0",
"js-module-formats": "~0.1.2",
"js-string-escape": "1.0.1",
"lodash": "^4.17.4",
"source-map": "~0.1.43",
"traceur": "0.0.111",
"urix": "^0.1.0"
},
"devDependencies": {
"acorn": "~0.5.0",
"babel-preset-steal-test": "0.0.1",
"chai": "*",
"coffee-script": "1.7.1",
"eslint": "^8.14.0",
"mocha": "^10.0.0",
"q": "^1.5.1",
"xunit-file": "*"
},
"globalBrowser": {
"traceur#./src/node/traceur.js": "./browser/traceur.js"
},
"system": {
"meta": {
"traceur#./bin/traceur": {
"format": "global"
}
}
},
"scripts": {
"eslint": "eslint ./lib/*.js main.js",
"test": "npm run eslint && mocha test/*.js",
"test-windows": "npm run eslint && node_modules\\.bin\\mocha test\\*.js --reporter spec"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"main": "main",
"repository": {
"type": "git",
"url": "git://github.com/stealjs/transpile.git"
},
"eslintConfig": {
"extends": "eslint:recommended",
"rules": {
"no-param-reassign": "error"
},
"env": {
"node": true,
"mocha": true,
"es6": true
}
}
}