-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
74 lines (74 loc) · 1.6 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
{
"name": "vue-css-modules",
"version": "1.2.0",
"description": "Seamless mapping of class names to CSS modules inside of Vue components.",
"license": "MIT",
"main": "lib/index.js",
"unpkg": "dist/vue-css-modules.min.js",
"jsdelivr": "dist/vue-css-modules.min.js",
"homepage": "https://github.com/fjc0k/vue-css-modules",
"author": {
"name": "fjc0k",
"email": "fjc0kb@gmail.com",
"url": "https://github.com/fjc0k"
},
"repository": {
"type": "git",
"url": "git@github.com:fjc0k/vue-css-modules.git"
},
"bugs": {
"url": "https://github.com/fjc0k/vue-css-modules/issues"
},
"keywords": [
"vue",
"vuejs",
"css",
"css-modules",
"postcss",
"sass",
"less",
"stylus"
],
"files": [
"dist",
"lib"
],
"scripts": {
"demo": "bdr dev demo/index.js --css.modules",
"test": "jest --coverage",
"build": "bdr transform & bdr build",
"release": "standard-version -a",
"postrelease": "git push --follow-tags origin master && npm publish"
},
"standard-version": {
"scripts": {
"postbump": "yarn build && git add -A"
}
},
"eslintConfig": {
"root": true,
"extends": "@fir-ui/fir"
},
"eslintIgnore": [
"dist",
"lib"
],
"babel": {
"presets": [
[
"@bdr/bdr"
]
]
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@fir-ui/eslint-config-fir": "^0.3.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"bdr": "^1.3.4",
"codecov": "^3.0.0",
"eslint": "^4.19.1",
"jest": "^22.4.3",
"standard-version": "^4.3.0"
}
}