-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 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
{
"name": "vue-render-performance-comparisons",
"version": "1.0.0",
"license": "MIT",
"author": "Chris Fritz <chrisvfritz@gmail.com>",
"private": true,
"scripts": {
"install:react": "cd examples/react && npm install",
"install:vue": "cd examples/vue && npm install",
"install:self": "npm install",
"install-all": "npm-run-all --parallel install:*",
"build:react": "cd examples/react && npm run build",
"build:vue": "cd examples/vue && npm run build",
"build-all": "npm-run-all --parallel build:*",
"serve:react": "cd examples/react && npm run serve",
"serve:vue": "cd examples/vue && npm run serve",
"serve-all": "npm-run-all --parallel serve:*",
"lint:react": "cd examples/react && npm run lint",
"lint:vue": "cd examples/vue && npm run lint",
"lint:helpers": "eslint --ext .js helpers",
"lint-all": "npm-run-all lint:*",
"start": "npm-run-all install-all lint-all build-all serve-all"
},
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"npm-run-all": "^3.0.0"
},
"eslintConfig": {
"extends": "standard"
}
}