-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.15 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
{
"name": "*__name__*",
"version": "0.0.1",
"description": "*__desc__*",
"author": "*__author__* <*__email__*>",
"private": true,
"lavas": true,
"scripts": {
"dev": "lavas dev",
"build": "lavas build",
"start": "lavas start",
"lint": "fecs ./ --rule --type 'vue,js,css'",
"test": "ava"
},
"ava": {
"concurrency": 1,
"failFast": true,
"files": [
"test/cases/*.test.js"
],
"require": [
"babel-register",
"babel-polyfill"
]
},
"dependencies": {
"array-includes": "^3.0.3",
"array.prototype.find": "^2.0.4",
"es6-promise": "^4.1.1",
"express": "^4.0.0",
"lavas-core-vue": "^1.2.0",
"normalize.css": "^7.0.0"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"ava": "^0.25.0",
"babel-polyfill": "^6.26.0",
"babel-preset-vue-app": "^1.3.1",
"http-proxy-middleware": "^0.17.4",
"koa": "^2.5.0",
"semver": "^5.5.0",
"stoppable": "^1.0.4",
"superkoa": "^1.0.3",
"supertest": "^3.0.0"
},
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}