-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
33 lines (33 loc) · 1.8 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
{
"version": "0.0.1",
"private": true,
"scripts": {
"build:normalize-js": "cd normalize-js && yarn run build && cd -",
"build:stopify": "cd stopify/ && yarn run build && cd -",
"build:stopify-continuations": "cd stopify-continuations/ && yarn run build && cd -",
"build:stopify-continuations-compiler": "cd stopify-continuations-compiler/ && yarn run build && cd -",
"build:stopify-estimators": "cd stopify-estimators/ && yarn run build && cd -",
"build": "./build.sh",
"tslint:stopify": "cd stopify && yarn run tslint && cd -",
"tslint:stopify-continuations": "cd stopify-continuations && yarn run tslint && cd -",
"tslint:stopify-continuations-compiler": "cd stopify-continuations-compiler && yarn run tslint && cd -",
"tslint:stopify-estimators": "cd stopify-estimators && yarn run tslint && cd -",
"tslint-fix:stopify": "cd stopify && yarn run tslint-fix && cd -",
"tslint-fix:stopify-continuations": "cd stopify-continuations && yarn run tslint-fix && cd -",
"tslint-fix:stopify-continuations-compiler": "cd stopify-continuations-compiler && yarn run tslint-fix && cd -",
"tslint-fix:stopify-estimators": "cd stopify-estimators && yarn run tslint-fix && cd -",
"tslint": "yarn run tslint:stopify && yarn run tslint:stopify-continuations && yarn run tslint:stopify-continuations-compiler && yarn run tslint-fix:stopify-estimators",
"tslint-fix": "yarn run tslint-fix:stopify && yarn run tslint-fix:stopify-continuations && yarn run tslint-fix:stopify-continuations-compiler && yarn run tslint-fix:stopify-estimators"
},
"workspaces": [
"stopify",
"stopify-continuations",
"stopify-continuations-compiler",
"stopify-estimators",
"normalize-js",
"hygiene",
"util",
"continuations-playground",
"stopify-higher-order-functions"
]
}