-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "cell-complex",
"version": "0.0.46",
"author": "Xie Yuheng",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "[email protected]:xieyuheng/cell-complex.git"
},
"files": [
"src",
"lib"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "ava 2> /dev/null",
"web-build": "parcel build web/index.html -d web/dist",
"web-watch": "parcel web/index.html -d web/dist",
"web-up": "surge web/dist cell-complex.surge.sh",
"web": "npm run web-build; npm run web-up",
"api-build": "typedoc src --out docs/api --mode modules --ignoreCompilerErrors",
"api-surge": "surge docs/api api.cell-complex.surge.sh",
"api-now": "now switch xieyuheng; now -n cell-complex deploy docs/api --target production",
"api": "npm run api-build; npm run api-surge; npm run api-now",
"up": "git commit -m 'up'; npm run build; npm run api; npm version patch; git push; npm publish"
},
"devDependencies": {
"@types/assert": "^1.4.6",
"@types/lodash": "^4.14.149",
"@types/nanoid": "^2.1.0",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"ava": "^3.5.1",
"parcel-bundler": "^1.12.4",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.9.2",
"@cicadoidea/basic": "0.0.17",
"lodash": "^4.17.15",
"nanoid": "^2.1.11"
}
}