forked from pomber/didact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.19 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
{
"name": "didact",
"version": "2.0.1",
"description": "A didactic alternative to React.",
"license": "MIT",
"repository": "hexacta/didact",
"author": "pomber <[email protected]>",
"main": "dist/didact.umd.js",
"module": "dist/didact.es.js",
"files": [
"dist"
],
"scripts": {
"test": "ava",
"build:module": "rollup src/didact.js -f es -n didact -o dist/didact.es.js",
"build:main": "rollup src/didact.js -f umd -n didact -o dist/didact.umd.js",
"build": "run-p build:module build:main",
"prepublishOnly": "npm run build"
},
"keywords": [
"react"
],
"devDependencies": {
"ava": "^0.19.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.3.3",
"babel-register": "^6.24.1",
"browser-env": "^2.0.29",
"npm-run-all": "^4.0.2",
"rollup": "^0.41.6"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"plugins": [
[
"transform-react-jsx",
{}
]
],
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}