This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.67 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
{
"name": "frontal",
"version": "0.9.1",
"main": "app/main.js",
"private": true,
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/electron app/main.js",
"prewatch": "echo ' cleaning app/ folder except node_modules' && find app/* -maxdepth 0 -name 'node_modules' -prune -o -exec rm -rf '{}' ';'",
"watch": "./node_modules/.bin/babel src -w -d app -D",
"sassgh": "./node_modules/.bin/node-sass -w src/views/themes/github/scss/ -o src/views/themes/github/css/ --output-style=compact",
"sassblank": "./node_modules/.bin/node-sass -w src/views/themes/blank/scss/ -o src/views/themes/blank/css/ --output-style=compact",
"sassdefault": "./node_modules/.bin/node-sass -w src/views/themes/default/scss/ -o src/views/themes/default/css/ --output-style=compact",
"test": "./node_modules/.bin/mocha --compilers js:babel-register",
"pandoc": "echo 'trying to create markdown via pandoc for testing css in ./test/index.html' && sh bin/pandoc.sh",
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist": "build",
"predist": "echo 'removing dist/ folder' && rm -rf dist/ && npm run prestart",
"prepack": "npm run predist",
"prestart": "echo 'building help' && ./bin/build-help-html.js",
"yaml": "echo 'parsing yaml at ./src/help/_frontal.yaml' && ./bin/test-yaml.sh",
"changelog": "log=$(git log --pretty=format:'<li> <a href=\"http://github.com/frntl/frontal/commit/%H\">view commit •</a> %s</li> '); echo \"CHANGELOG\n=======\n${log}\" > CHANGELOG.md",
"rebuild": "npm rebuild --runtime=electron --target=1.4.3 --disturl=https://atom.io/download/atom-shell --abi=48"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.4.1",
"cz-conventional-changelog": "^1.1.6",
"devtron": "^1.2.1",
"electron": "^1.4.3",
"electron-builder": "^5.14.2",
"electron-packager": "^7.3.0",
"electron-rebuild": "^1.1.5",
"electron-reload": "^1.0.1",
"file-exists": "^1.0.0",
"mocha": "^2.5.3",
"node-sass": "^3.8.0",
"npm-check-updates": "^2.7.2"
},
"repository": {
"type": "git",
"url": "[email protected]:sebastian-meier/frontal.git"
},
"author": "Fabian Morón Zirfas <[email protected]> (http://fabianmoronzirfas.me)",
"contributors": [
"Fabian Morón Zirfas <[email protected]> (http://fabianmoronzirfas.me)",
"Sebastian Meier <[email protected]> (http://www.sebastianmeier.eu)"
],
"build": {
"appId": "me.fabianmoronzirfas.frontal",
"asar": false,
"extraResources": "./help/*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}