-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
70 lines (70 loc) · 1.87 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
{
"name": "vuex-smart-module",
"version": "1.0.0",
"author": "katashin",
"description": "Type safe Vuex module with powerful module features",
"keywords": [
"Vue.js",
"Vuex",
"module",
"helper",
"type safety",
"typescript"
],
"license": "MIT",
"main": "dist/vuex-smart-module.cjs.js",
"module": "dist/vuex-smart-module.esm.js",
"types": "lib/index.d.ts",
"typesVersions": {
"<3.6": {
"*": [
"ts3.4/*"
]
}
},
"files": [
"dist",
"lib",
"ts3.4"
],
"homepage": "https://github.com/ktsn/vuex-smart-module",
"bugs": "https://github.com/ktsn/vuex-smart-module/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/vuex-smart-module.git"
},
"scripts": {
"prepublishOnly": "npm run test && npm run clean && npm run build && npm run downlevel-dts",
"clean": "rm -rf lib dist .tmp ts3.4",
"dev": "jest --watch",
"build": "npm run build:ts && npm run build:rollup",
"build:ts": "tsc -p src",
"build:rollup": "node scripts/build.js",
"downlevel-dts": "downlevel-dts . ts3.4",
"lint": "eslint --ext js,ts scripts src test",
"lint:fix": "eslint --ext js,ts --fix scripts src test",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@vue/test-utils": "^2.0.0-rc.6",
"downlevel-dts": "^0.7.0",
"eslint": "^7.3.0",
"eslint-config-ktsn-typescript": "^2.2.0",
"jest": "^27.0.4",
"npm-run-all": "^4.1.5",
"prettier": "2.3.0",
"prettier-config-ktsn": "^1.0.0",
"rollup": "^2.50.6",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-replace": "^2.2.0",
"ts-jest": "^27.0.2",
"tslib": "^2.0.0",
"typescript": "~4.3.2",
"uglify-js": "^3.6.0",
"vue": "^3.0.11",
"vue-composable-tester": "^0.1.3",
"vuex": "^4.0.1"
}
}