-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "react-hyperscript-helpers",
"version": "2.0.0",
"description": "Terse syntax for hyperscript using react",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:babel && npm run build:umd",
"build:babel": "babel src --out-dir lib",
"build:umd": "mkdir -p umd && NODE_ENV=umd babel src/index.js --out-file umd/react-hyperscript-helpers.min.js",
"lint": "eslint src test",
"test": "npm run test:mocha",
"test:mocha": "mocha -c -r babel-core/register ./test/**/*Spec.js",
"prepublish": "npm run clean && npm run build",
"postversion": "git push && git push --tags",
"clean": "rimraf lib umd"
},
"keywords": [
"hyperscript",
"react",
"jsx",
"hyperscript-helpers",
"react-hyperscript",
"react-hyperscript-helpers"
],
"author": "Tyler Graham <[email protected]>",
"repository": "github:Jador/react-hyperscript-helpers",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-minify": "^0.4.3",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.4.1",
"create-react-class": "^15.6.3",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"mocha": "^2.3.4",
"react": "^16.4.1",
"rimraf": "^2.4.4"
},
"peerDependencies": {
"react": ">=0.13.0"
}
}