forked from andeee/react-hyperscript-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.77 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
{
"name": "react-hyperscript-helpers",
"version": "1.2.0",
"description": "Terse syntax for hyperscript using react",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "npm run build:babel && npm run build:ts-def",
"build:babel": "babel src --out-dir lib",
"build:ts-def": "babel-node ./generate-ts-def.js",
"lint": "eslint src test",
"test": "npm run test:mocha && npm run test:tsc",
"test:mocha": "mocha -c -r babel-core/register ./test/**/*Spec.js",
"test:tsc": "npm run build && npm run test:tsc:fake-install && npm run test:tsc:compile && npm run test:tsc:cleanup",
"test:tsc:clean-fake": "rm -f node_modules/react-hyperscript-helpers",
"test:tsc:fake-install": "npm run test:tsc:clean-fake && ln -s .. node_modules/react-hyperscript-helpers",
"test:tsc:compile": "tsc test/type-definitions.ts --module commonjs",
"test:tsc:cleanup": "npm run test:tsc:clean-fake && rm test/type-definitions.js",
"prepublish": "npm run clean && npm run build",
"postversion": "git push && git push --tags",
"clean": "rimraf lib"
},
"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.5.1",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"chai": "^3.4.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"mocha": "^2.3.4",
"rimraf": "^2.4.4",
"typescript": "^1.7.5"
},
"peerDependencies": {
"react": ">=0.13.0"
}
}