-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.57 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.57 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ElectronScript",
"version": "0.0.0",
"private": true,
"main": "./app/main.js",
"scripts": {
"start": "electron ./app/main.js",
"prerelease": "gulp build --env=production",
"test": "node_modules/.bin/_mocha --compilers coffee:coffee-script/register --timeout 0 --ui bdd src/spec/app_test.coffee --env=test",
"release": "build",
"publish": "build -p always"
},
"build": {
"appId": "com.electron.script",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
"./python",
"./common"
],
"mac": {
"category": "",
"target": [
"zip",
"dmg"
]
},
"nsis": {
"perMachine": true
}
},
"description": "NodeEditor",
"author": {
"name": "Seth Turin",
"email": ""
},
"dependencies": {
"body-parser": "~1.8.1",
"coffee-script": "^1.6.3",
"cookie-parser": "~1.3.3",
"cors": "^2.8.3",
"debug": "~2.0.0",
"electron-updater": "^1.15.0",
"express": "~4.9.0",
"fs-jetpack": "^1.0.0",
"jade": "~1.6.0",
"morgan": "~1.3.0",
"serve-favicon": "~2.1.3",
"stylus": "^0.54.3"
},
"devDependencies": {
"ansi-styles": "^2.2.1",
"browser-sync": "^2.18.8",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"core-util-is": "^1.0.2",
"electron": "^1.6.7",
"electron-builder": "^17.8.0",
"electron-prebuilt": "^1.4.13",
"glob": "^7.0.3",
"glob-fs": "^0.1.6",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-coffee": "^2.3.4",
"gulp-coffeelint": "^0.6.0",
"gulp-concat": "^2.6.0",
"gulp-ext-replace": "^0.3.0",
"gulp-jade": "^1.1.0",
"gulp-jadelint": "^0.1.0",
"gulp-karma": "0.0.5",
"gulp-nodemon": "^2.2.1",
"gulp-plumber": "^1.1.0",
"gulp-replace": "^0.5.4",
"gulp-riot": "^0.4.9",
"gulp-stylus": "^2.6.0",
"gulp-util": "^3.0.7",
"has-ansi": "^2.0.0",
"isarray": "^1.0.0",
"jasmine-core": "^2.6.0",
"jasmine-node": "^1.14.5",
"jstransformer-coffee-script": "^1.0.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coffee-preprocessor": "^0.3.0",
"karma-firefox-launcher": "^0.1.7",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^0.1.0",
"karma-jasmine": "^0.3.8",
"karma-jasmine-jquery": "^0.1.1",
"karma-jquery": "^0.2.0",
"karma-riot": "^1.0.1",
"minimist": "^1.2.0",
"mocha": "^3.4.1",
"riot": "^2.3.18",
"spectron": "^3.6.4",
"strip-ansi": "^3.0.1",
"stylus": "^0.54.2",
"supports-color": "^3.1.2"
}
}