-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.22 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": "hyperapp-scoped-stylesheet",
"version": "1.3.0",
"description": "Easily style Hyperapp view functions / components",
"main": "dist/hyperapp-scoped-stylesheet.es.js",
"browser": "dist/hyperapp-scoped-stylesheet.umd.js",
"module": "dist/hyperapp-scoped-stylesheet.es.js",
"scripts": {
"test": "jest",
"build": "rollup -c rollup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aalises/hyperapp-scoped-stylesheet"
},
"keywords": [
"hyperapp",
"scoped-css",
"css"
],
"author": "Albert Alises (@aalises)",
"license": "MIT",
"dependencies": {
"decamelize": "^1.2.0",
"hyperapp": "^1.2.5",
"scope-css": "^1.2.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"jest": "^22.0.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-uglify": "^3.0.0",
"babel-plugin-transform-react-jsx": "^6.24.1"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"babel": {
"presets": "env",
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
]
}
}