-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.53 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
{
"version": "0.1.1",
"scripts": {
"postinstall": "./node_modules/.bin/install-app-deps && ./node_modules/.bin/electron-rebuild -w serialport -p",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch",
"bundle": "browserify --im -t babelify ./src/js/index.jsx | uglifyjs -m > ./app/dst/bundle.js",
"bundle:watch": "watchify --im -d -t babelify ./src/js/index.jsx -o ./app/dst/bundle.js",
"start": "./node_modules/.bin/electron ./app/main.js",
"build": "build",
"release": "build"
},
"repository": {
"type": "git",
"url": "https://github.com/syundo0730/kyun-term"
},
"build": {
"appId": "com.github.syundo0730.kyun.term",
"squirrelWindows": {
"iconUrl": "https://github.com/syundo0730/kyun-term/blob/master/build/icon.ico"
},
"win": {
"target": ["nsis", "squirrel"]
}
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^7.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.1",
"electron-builder": "^8.6.0",
"electron-prebuilt": "^1.4.6",
"electron-rebuild": "^1.3.0",
"enzyme": "^2.5.1",
"eslint": "^3.9.0",
"eslint-plugin-react": "^6.4.1",
"expect": "^1.20.2",
"mocha": "^3.1.2",
"react-addons-test-utils": "^15.1.0",
"redux-mock-store": "1.2.1",
"sinon": "^1.17.2",
"uglify-js": "^2.6.1",
"watchify": "^3.6.1"
},
"dependencies": {}
}