forked from shift-js/shift-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.49 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
{
"name": "shift.js",
"version": "0.1.1",
"description": "Swift to JavaScript Transpiler",
"engines": {
"node": "4.2.1"
},
"directories": {
"lib": "./transpiler"
},
"scripts": {
"start": "node server.js",
"test": "grunt test"
},
"preferGlobal": true,
"bin": {
"shift.js": "command.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shift-js/shift-js.git"
},
"keywords": [
"swift",
"javascript",
"js",
"transpiler",
"compiler"
],
"contributors": [
"Don Steinert <[email protected]>",
"Max Yazhbin <[email protected]>",
"Verlon Smith <[email protected]>",
"Rex Suter <[email protected]>",
"David Churchill <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shift-js/shift-js/issues"
},
"homepage": "https://shiftjs.com",
"dependencies": {
"bluebird": "^2.10.2",
"chokidar": "^1.2.0",
"commander": "^2.9.0",
"deep-diff": "^0.3.3",
"escodegen": "^1.7.0",
"esprima-ast-utils": "0.0.6",
"express": "^4.13.3",
"lodash.isequal": "^3.0.4"
},
"devDependencies": {
"bower": "^1.6.5",
"browserify": "^12.0.0",
"chai": "^3.3.0",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.3",
"grunt-docco": "^0.4.0",
"grunt-mocha-test": "^0.12.7",
"grunt-shell": "^1.1.2",
"mocha": "^2.3.3"
}
}