-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.5 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
{
"name": "styletron-vue",
"version": "0.4.1",
"description": "Vue bindings for styletron.",
"repository": {
"url": "egoist/styletron-vue",
"type": "git"
},
"main": "dist/styletron-vue.cjs.js",
"module": "dist/styletron-vue.es.js",
"cdn": "dist/styletron-vue.js",
"unpkg": "dist/styletron-vue.js",
"files": [
"dist"
],
"scripts": {
"test": "npm run lint",
"prepublishOnly": "npm run build",
"lint": "xo",
"build": "bili --format cjs,es,umd,umd-min --moduleName Styletron --js babel --banner --exports named",
"gh": "gh-pages -d example/dist",
"deploy": "npm run build:example && npm run gh",
"build:example": "poi build",
"example": "poi"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"nano-assign": "^1.0.0",
"styletron-utils": "^3.0.4"
},
"devDependencies": {
"bili": "^2.2.6",
"eslint-config-rem": "^3.2.0",
"gh-pages": "^1.0.0",
"jest-cli": "^20.0.4",
"poi": "^9.1.12",
"styletron": "^3.0.4",
"vue-github-badge": "^1.0.1",
"xo": "^0.18.0"
},
"poi": {
"entry": "example/index.js",
"dist": "example/dist",
"homepage": "/styletron-vue/"
},
"xo": {
"extends": "rem",
"envs": [
"jest"
],
"ignores": [
"example/**",
"test/**"
],
"rules": {
"import/prefer-default-export": 0,
"guard-for-in": 0
}
},
"peerDependencies": {
"styletron": "^3.0.4"
}
}