-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 856 Bytes
/
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
{
"name": "yearclock",
"version": "0.1.0",
"private": true,
"dependencies": {
"chrome-webstore-upload-cli": "^1.2.0",
"dot-json": "^1.1.0",
"gh-pages": "^1.2.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-scripts": "1.0.11"
},
"scripts": {
"start": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"ext-version": "dot-json public/manifest.json version $(date -u +%Y.%-m.%-d.%-H%M)",
"ext-build": "PUBLIC_URL='/' npm run build",
"ext-publish": "cd build && webstore upload --auto-publish",
"ext": "npm run ext-version && npm run ext-build && npm run ext-publish",
"release": "npm run ext && npm run build"
},
"homepage": "https://devm33.github.io/yearclock"
}