-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "RFEditor",
"productName": "RFEditor",
"description": "The better editor for Robotframework",
"version": "1.0.0",
"author": "chengaomin <[email protected]>",
"copyright": "© 2017 chengaomin",
"homepage": "https://github.com/chengaomin/RFEditor",
"license": "MIT",
"main": "app/index.js",
"build": {
"appId": "com.chengaomin.RFEditor",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"publish": null
},
"scripts": {
"postinstall": "install-app-deps",
"build": "gulp build",
"prerelease": "gulp build --env=production",
"release": "build",
"start": "gulp start",
"pretest": "gulp build-unit --env=test",
"test": "electron-mocha app/specs.js.autogenerated --renderer --require source-map-support/register",
"coverage": "npm test -- -R scripts/istanbul-reporter",
"pree2e": "gulp build-e2e --env=test",
"e2e": "mocha app/e2e.js.autogenerated --require source-map-support/register"
},
"dependencies": {
"fs-jetpack": "^0.12.0",
"iconv-lite":"^0.4.17"
},
"devDependencies": {
"chai": "^3.5.0",
"electron": "1.6.2",
"electron-builder": "^14.5.2",
"electron-mocha": "^3.3.0",
"gulp": "^3.9.1",
"gulp-batch": "^1.0.5",
"gulp-less": "^3.3.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"istanbul": "^0.4.5",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"rollup": "^0.41.4",
"rollup-plugin-istanbul": "^1.1.0",
"source-map-support": "^0.4.11",
"spectron": "^3.6.0"
}
}