-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "vue-uniq-ids",
"version": "1.1.2",
"description": "A Vue.js plugin that helps to use id-related attributes with no side-effect",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && webpack",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/termosa/vue-uniq-ids.git"
},
"keywords": [
"vuejs",
"vue",
"directive",
"unique",
"uniq",
"id",
"for",
"aria",
"form"
],
"author": "Stanislav Termosa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/termosa/vue-uniq-ids/issues"
},
"homepage": "https://github.com/termosa/vue-uniq-ids#readme",
"devDependencies": {
"babel-core": "6.22.1",
"babel-loader": "6.2.10",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-preset-es2015": "6.22.0",
"rimraf": "^2.5.4",
"webpack": "^2.2.1"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports",
"transform-object-assign"
]
},
"dependencies": {
"qinu": "^1.1.2"
}
}