-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.17 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
{
"name": "remmy",
"version": "0.0.1",
"description": "px to rem calculator",
"main": "app/main.js",
"scripts": {
"start": "electron app/",
"test": "npm run lint:js && npm run lint:js:test && node test/resources/js/test.js",
"postinstall": "npm run browserify && npm run compile:scss",
"compile:scss": "node-sass app/style/scss/main.scss 'app/resources/css/app.css' --output",
"browserify": "browserify app/js/app.js -o app/resources/js/app.js -t [ babelify --presets [ es2015 ] ]",
"browserify:test": "browserify test/js/test.js -o test/resources/js/test.js -t [ babelify --presets [ es2015 ] ]",
"watch:scss": "watch-run -p 'app/style/scss/**/*.scss' 'npm run compile:scss'",
"watch:js": "watch-run -p 'app/js/**/*.js' npm run browserify",
"watch:js:test": "watch-run -p 'test/js/**/*.js' npm run browserify:test",
"watch:all": "npm run watch:scss & npm run watch:js & npm run watch:js:test",
"analyse:css": "parker app/resources/css/app.css",
"lint:js": "eslint app/js/**/*.js",
"lint:js:test": "eslint test/js/**/*.js",
"commit": "git-cz",
"pack": "build --dir",
"dist": "build"
},
"author": "Christian Heyn",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/christianheyn/remmy.git"
},
"bugs": "https://github.com/christianheyn/remmy/issues",
"keywords": [
"pixel",
"rem",
"calculator",
"helper"
],
"dependencies": {
"electron-localshortcut": "^0.6.1",
"normalize.scss": "^0.1.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^1.1.6",
"electron": "^1.4.3",
"electron-builder": "^7.11.4",
"eslint": "^3.5.0",
"node-sass": "^3.4.2",
"parker": "0.0.10",
"phantomjs-prebuilt": "^2.1.7",
"tape": "^4.6.2",
"watch-run": "^1.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"build": {
"appId": "remmyApp",
"mac": {
"category": "calculator"
}
}
}