-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 990 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
27
28
{
"name": "puretabs",
"version": "0.1.0",
"description": "Tree tabs extension written in PureScript",
"directories": {
"test": "test"
},
"scripts": {
"parcel": "parcel",
"dev": "concurrently --kill-others \"spago build --watch\" \"parcel watch src/background.js src/sidebar.js -d extension/\"",
"build": "spago build && parcel build src/background.js src/sidebar.js -d extension/",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf .cache .psci_modules modules dist extension/background.js extension/background.js.map extension/sidebar.js extension/sidebar.js.map",
"preinstall": "npx npm-force-resolutions",
"start:firefox": "web-ext run --source-dir ./extension",
"sign": "web-ext sign --source-dir ./extension"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.2.0",
"parcel": "^1.12.4",
"spago": "^0.19.2"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
}
}