-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 942 Bytes
/
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
{
"name": "mini-vue",
"version": "0.0.1",
"description": "mini vue in concept",
"private": true,
"main": "index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -c rollup.dev.config.js -w",
"lint": "eslint src test",
"test": "npm run build && node test/dist/test.js",
"test:tpl": "node test/dist/test.template.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AsherWang/mini-vue.git"
},
"keywords": [
"mini",
"vue",
"learn"
],
"author": "ash",
"license": "MIT",
"bugs": {
"url": "https://github.com/AsherWang/mini-vue/issues"
},
"homepage": "https://github.com/AsherWang/mini-vue#readme",
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"rollup": "^2.23.0",
"rollup-plugin-serve": "^1.0.3",
"rollup-plugin-terser": "^6.1.0"
}
}