-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.69 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "vue-creativecommons",
"description": "CreativeCommons.org Vue.js components library.",
"version": "1.1.4",
"license": "MIT",
"main": "dist/vue-creativecommons.common.js",
"module": "dist/vue-creativecommons.esm.js",
"unpkg": "dist/vue-creativecommons.js",
"jsdelivr": "dist/vue-creativecommons.js",
"files": [
"src",
"dist/*.js"
],
"author": "Julon Lou <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/julon/vue-creativecommons.git"
},
"bugs": {
"url": "https://github.com/julon/vue-creativecommons/issues"
},
"homepage": "https://github.com/julon/vue-creativecommons#readme",
"keywords": [
"vue",
"vue-component",
"vue-library"
],
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"build": "npm run build:cjs && npm run build:es && npm run build:umd:dev && npm run build:umd:prod",
"build:cjs": "rollup -c --environment TARGET:cjs",
"build:es": "rollup -c --environment TARGET:esm",
"build:umd:dev": "rollup -c --environment TARGET:umd-dev",
"build:umd:prod": "rollup -c --environment TARGET:umd-prod",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs/dist/stories",
"precommit": "lint-staged",
"cz": "git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS",
"test": "npm run lint && jest --verbose --coverage",
"test:update": "jest --verbose --updateSnapshot",
"test:watch": "jest --verbose --watchAll --notify",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue . --fix",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"devDependencies": {
"@commitlint/cli": "^6.0.2",
"@commitlint/config-conventional": "^6.0.4",
"@semantic-release/changelog": "^2.0.1",
"@semantic-release/git": "^4.0.1",
"@semantic-release/github": "^4.0.0",
"@semantic-release/npm": "^3.0.0",
"@storybook/vue": "^3.3.3",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-module-resolver": "^3.0.0",
"babel-preset-vue-app": "^2.0.0",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-vue": "^4.0.1",
"husky": "^0.14.3",
"jest": "22.1.4",
"jest-serializer-html": "^5.0.0",
"jest-serializer-vue": "^1.0.0",
"jest-vue-preprocessor": "^1.4.0",
"lint-staged": "^7.0.0",
"lodash": "^4.17.4",
"prettier": "^2.0.5",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-vue": "^3.0.0",
"semantic-release": "^15.0.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglify-es": "^3.3.4",
"vue": "^2.5.13",
"vue-jest": "^2.0.0",
"vue-loader": "^15.0.5",
"vue-template-compiler": "^2.5.13"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"dependencies": {}
}