This repository has been archived by the owner on Jun 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nuz",
"version": "1.0.0-beta",
"description": "Nuz is an open-source project, the runtime package manager for web platform.",
"author": "Hieu Lam <[email protected]> (https://lamhieu.info)",
"repository": {
"type": "git",
"url": "git+https://github.com/nuz-app/nuz.git"
},
"bugs": {
"url": "https://github.com/nuz-app/nuz/issues"
},
"homepage": "https://github.com/nuz-app/nuz#readme",
"directories": {
"doc": "docs",
"example": "examples"
},
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "lerna bootstrap",
"reinstall": "rimraf **/node_modules **/yarn.lock && yarn",
"clean": "lerna run clean --parallel",
"build": "lerna run build --stream",
"ts:test": "tsc --build tsconfig.test.json",
"ts:dev": "tsc --build --watch tsconfig.dev.json",
"test:only": "lerna run test --stream",
"test": "yarn ts:test && yarn test:only",
"lint": "tslint --config tslint.json 'packages/**/*.+(ts{,x}|js{,x})' --exclude '**/+(dist|node_modules|coverage)/**'",
"lint:fix": "yarn lint --fix",
"dev": "lerna exec --parallel -- yarn dev",
"preversion:beta": "yarn clean && yarn build",
"version:beta": "lerna version --conventional-prerelease --conventional-commits --force-publish --no-changelog --preid beta",
"version:release": "lerna version --conventional-graduate --conventional-commits --force-publish",
"publish:git": "lerna publish from-git",
"publish:package": "lerna publish from-package",
"ok": "yarn clean && yarn build && yarn lint && yarn test"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": "^10.13 || ^12 || ^14"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "~2.35.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.1.3"
},
"dependencies": {
"tslib": "^2.0.3"
}
}