-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.75 KB
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
{
"name": "ibyar",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"example"
],
"dependencies": {
"tslib": "^2.8.1",
"zone.js": "~0.16.2"
},
"devDependencies": {
"test262-parser-tests": "0.0.5",
"typescript": "^7.0.2"
},
"scripts": {
"clean": "tsc -b --clean example/",
"build:src": "npm run clean && tsc --build -v",
"build:directives": "cd src/directives && tsc -b --clean && npx ibyar -b -v && cd ../..",
"build:router": "cd src/router && tsc -b --clean && npx ibyar -b -v && cd ../..",
"build:forms": "cd src/forms && tsc -b --clean && npx ibyar -b -v && cd ../..",
"fix-permission": "npx rimraf ./node_modules/.bin/ibyar && npm i && npx ibyar -v",
"build": "npm run build:src && npm run fix-permission && npm run build:directives && npm run build:router && npm run build:forms",
"build:w": "npm run clean && tsc --build -v -w",
"ibyar": "npm run clean && ibyar --build -v -w",
"ibyar:w": "npm run clean && ibyar --build -v -w",
"build:example": "npm run clean && tsc -b -v example/",
"build:example:w": "npm run clean && tsc -b -v -w example/",
"ibyar:example": "npm run clean && ibyar -b -v example/",
"ibyar:example:w": "npm run clean && ibyar -b -v -w example/",
"test262": "node test/expressions/test262.mjs",
"do:publish-no-git": "npm run build && npx lerna publish --force-publish --no-git-tag-version --no-push",
"do:publish-no-tag": "npm run build && npx lerna publish --force-publish --no-git-tag-version",
"do:publish-no-push": "npm run build && npx lerna publish --force-publish --no-push",
"do:publish": "npm run build && npx lerna publish --force-publish",
"docs": "npx typedoc --tsconfig ./tsconfig.json",
"serve": "serve -s -p 5000 ./example/public/",
"esmpack": "cd example && esmpack"
}
}