-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.9 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
{
"name": "@ccip-app/session-table",
"version": "1.1.0",
"license": "LGPL-3.0",
"repository": "https://github.com/CCIP-App/CCIP-Session-Table",
"author": "Aries Cs <aries0d0f@gmail.com>",
"main": "dist/ccip-session-table.umd.js",
"module": "dist/ccip-session-table.esm.js",
"unpkg": "dist/ccip-session-table.min.js",
"browser": {
"./sfc": "src/SessionTable.vue"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run build:umd && npm run build:es && npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/ccip-session-table.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/ccip-session-table.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/ccip-session-table.min.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.4.4",
"rollup": "^1.29.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-vue": "^5.1.5",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^9.5.0",
"lodash": "^4.17.15",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.0",
"typescript": "~3.5.3",
"vue-property-decorator": "^8.3.0",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
}
}