-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "vue-stack-router",
"version": "0.6.7",
"description": "Vue stack router",
"main": "dist/vue-stack-router.js",
"module": "dist/vue-stack-router.esm.js",
"types": "src/index.ts",
"scripts": {
"build": "tsc --noEmit &&rollup -c build/esm.rollup.config.js && rollup -c build/commonjs.rollup.config.js ",
"test": "nyc mocha --require ./test/register './test/**/*.test.ts'",
"preversion": "npm run build",
"postversion": "git push && git push --tags",
"doc": "docsify serve docs",
"lint": "eslint 'src/**/*.ts'"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.2",
"@types/jsdom": "^16.2.1",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"chai": "^4.2.0",
"cz-conventional-changelog": "^3.0.2",
"docsify-cli": "^4.4.0",
"eslint": "^6.4.0",
"husky": "^3.0.7",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rollup": "^1.21.2",
"rollup-plugin-typescript2": "^0.24.1",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.11",
"typescript": "^3.6.2",
"vue": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}