-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "hyperscript-helpers",
"version": "3.0.3",
"description": "Terse syntax for hyperscript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"config": {
"commitizen": {
"path": "node_modules/rb-conventional-changelog/"
},
"ghooks": {
"commit-msg": "node ./node_modules/validate-commit-msg/index.js"
}
},
"dependencies": {},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^4.1.4",
"commitizen": "^2.5.0",
"eslint": "^1.9.0",
"html-tag-names": "^1.0.0",
"hyperscript": "^1.4.6",
"jsverify": "0.6.0",
"lodash": "^3.10.0",
"mocha": "^2.2.5",
"rb-conventional-changelog": "^1.1.9",
"react": "^0.14.2",
"svg-tag-names": "^1.1.1",
"validate-commit-msg": "^1.1.0"
},
"scripts": {
"lint": "./node_modules/.bin/eslint src/",
"test": "npm run lint && mocha",
"start": "./node_modules/.bin/babel src --out-dir=dist",
"ts-def": "./node_modules/.bin/babel-node ./generate-ts-def.js",
"prestart": "npm install && npm run ts-def",
"commit": "./node_modules/.bin/git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohanhi/hyperscript-helpers.git"
},
"keywords": [
"hyperscript",
"virtual-hyperscript",
"virtual-dom"
],
"author": "ohanhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ohanhi/hyperscript-helpers/issues"
},
"homepage": "https://github.com/ohanhi/hyperscript-helpers#readme"
}