forked from JiriChara/vue-kindergarten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.33 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
{
"name": "vue-kindergarten",
"version": "0.3.3",
"description": "Kindergarten plugin for VueJS 2.0",
"main": "lib/index.js",
"author": "Jiri Chara <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run build:commonjs",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"clean": "rimraf lib coverage esdoc",
"doc": "mkdirp esdoc && esdoc -c esdoc.json",
"lint": "eslint src test examples",
"report": "nyc report --reporter=lcov && codecov",
"test:e2e": "node test/e2e/runner.js",
"test:unit": "nyc ava",
"test": "npm run lint && npm run test:unit && npm run test:e2e && npm run report",
"prepublish": "npm run clean && npm run test && npm run build && npm run doc"
},
"files": [
"src",
"lib"
],
"devDependencies": {
"ava": "^0.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"bavaria-ipsum": "^1.0.3",
"chromedriver": "^2.33.2",
"codecov": "^3.0.0",
"cross-env": "^5.1.1",
"cross-spawn": "^5.1.0",
"esdoc": "^1.0.4",
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-vue": "^2.1.0",
"express": "^4.16.2",
"growl": "^1.10.3",
"mkdirp": "^0.5.1",
"nightwatch": "^0.9.16",
"nightwatch-helpers": "^1.2.0",
"nyc": "^11.3.0",
"phantomjs-prebuilt": "^2.1.16",
"rimraf": "^2.6.2",
"selenium-server": "^3.7.1",
"sinon": "^4.1.2",
"vue": "^2.5.8",
"vue-loader": "^13.5.0",
"vue-template-compiler": "^2.5.8",
"vuex": "^3.0.1",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.1",
"webpack-hot-middleware": "^2.21.0"
},
"dependencies": {
"kindergarten": "^1.5.2"
},
"ava": {
"files": [
"test/unit/**/*.spec.js"
],
"source": [
"src/**/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": false,
"powerAssert": false,
"babel": "inherit",
"require": [
"babel-register"
]
},
"nyc": {
"include": [
"src/**/*.js"
]
}
}