-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 768 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"scripts": {
"clean": "rimraf bower_components && rimraf output && rimraf .pulp-cache",
"install": "bower install",
"build": "pulp build -- --strict --censor-codes=ImplicitImport,UnusedImport,UnusedDctorExplicitImport,UnusedExplicitImport",
"clean-examples": "rimraf examples/output",
"build-examples": "./build-examples.sh",
"open-examples": "open examples/resources/*.html",
"clean-all": "npm run clean && npm run clean-examples",
"build-all": "npm run build && npm run build-examples",
"rebuild-all": "npm run clean-all && npm run build-all"
},
"devDependencies": {
"bower": "^1.8.8",
"pulp": "^12.4.2",
"purescript": "^0.12.5",
"purescript-psa": "^0.7.3",
"rimraf": "^2.6.3"
}
}