forked from rigor789/nativescript-vue-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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
{
"private": true,
"version": "3.0.0-dev.4",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "node scripts/dev.js",
"clean": "del-cli 'node_modules' 'temp' 'packages/*/{dist,node_modules}' 'apps/*/{node_modules,hooks,platforms,yarn.lock}'",
"build": "node scripts/build.js",
"size": "node scripts/build.js nativescript-vue runtime size-check -p -f global",
"lint": "prettier --write --parser typescript \"packages/**/*.ts?(x)\"",
"lint:apps": "prettier --write \"apps/**/app/**/*.{js,css,json}\"",
"test": "jest",
"test:ci": "jest --ci --runInBand --coverage && make-coverage-badge",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"postinstall": "node scripts/postinstall.js"
},
"types": "test-dts/index.d.ts",
"tsd": {
"directory": "test-dts"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 80
},
"devDependencies": {
"@microsoft/api-extractor": "^7.22.2",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/jest": "^27.4.1",
"@vue/compiler-sfc": "^3.2.33",
"ansi-colors": "^4.1.1",
"brotli": "^1.3.2",
"conventional-changelog-cli": "^2.2.2",
"csstype": "^3.0.11",
"del-cli": "^4.0.1",
"enquirer": "^2.3.6",
"execa": "^6.1.0",
"fs-extra": "^10.0.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"make-coverage-badge": "^1.2.0",
"minimist": "^1.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rollup": "^2.70.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.4",
"tsd": "^0.20.0",
"typescript": "^4.6.3",
"yorkie": "^2.0.0"
}
}