This repository has been archived by the owner on Jul 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 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
{
"name": "vue-downshift",
"version": "0.0.13",
"description": "Vue.js Downshift",
"main": "dist/vue-downshift.cjs.js",
"jsnext:main": "dist/vue-downshift.es.js",
"module": "dist/vue-downshift.es.js",
"peerDependencies": {},
"devDependencies": {
"@storybook/vue": "^3.2.3",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"kcd-scripts": "^0.27.0",
"vue": "^2.5.16",
"vue-loader": "^13.5.0",
"vue-template-compiler": "^2.5.16"
},
"dependencies": {},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"typings"
],
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"max-lines": "off",
"no-eq-null": "off",
"eqeqeq": "off",
"react/jsx-indent": "off",
"no-unused-vars": "off",
"no-lonely-if": "off",
"import/no-unassigned-import": "off"
}
},
"author": "CreativeThemes",
"license": "MIT",
"files": ["dist"],
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"doc": "doctoc README.md --maxlevel 2 --notitle",
"build": "kcd-scripts build --bundle",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:update": "npm run test:cover -s -- --updateSnapshot",
"test:build": "kcd-scripts test --config other/jest.config.js --no-watch",
"build-and-test": "npm run build -s && npm run test:build -s",
"storybook": "start-storybook -p 6006 -c stories",
"storybook:build":
"cd stories && npm install && cd .. && build-storybook -c stories",
"validate": "kcd-scripts validate lint,build-and-test,test:cover,test:flow",
"precommit": "kcd-scripts precommit",
"buildAndPublish": "npm run build && npm publish"
}
}