-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
39 lines (39 loc) · 1.33 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
{
"name": "tomato-pie",
"version": "1.0.0",
"description": "Schedule your time with a clock",
"main": "index.js",
"scripts": {
"start": "cp src/background.js dist/background.js && cp src/manifest.json dist/manifest.json && cp -r src/assets dist && parcel watch src/background.js src/index.html --public-url '.' --no-cache",
"build": "rm -r dist && rm dist.zip && parcel build src/background.js src/index.html --public-url '.' --no-source-maps && cp src/manifest.json dist/manifest.json && cp -r src/assets dist && zip -r dist.zip dist",
"packDisk": "crx pack dist -o tomato-pie.crx",
"test": "mocha --require babel-polyfill --require babel-register -u qunit './**/*.spec.js'",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getPie/Pie.git"
},
"author": "timqian",
"bugs": {
"url": "https://github.com/getPie/Pie/issues"
},
"homepage": "https://github.com/getPie/Pie#readme",
"dependencies": {
"calendar-graph": "^1.0.0",
"sortablejs": "^1.7.0"
},
"devDependencies": {
"crx": "^3.2.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"parcel": "^1.12.3",
"should": "^13.2.3"
},
"browserslist": [
"since 2017-06"
]
}