-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "dscript",
"version": "0.0.0-semantic-release",
"description": "Framework agnostic hyperscript",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./ --ignore-pattern node_modules/ --ignore-pattern lib",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run lint && npm run compile && nyc ava"
},
"repository": {
"type": "git",
"url": "https://github.com/dustinspecker/dscript.git"
},
"keywords": [
"dscript",
"hyperscript",
"virtual",
"deku",
"react"
],
"author": {
"name": "Dustin Specker",
"email": "[email protected]",
"url": "https://github.com/dustinspecker"
},
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"html-tags": "^1.1.1",
"object-assign": "^4.0.1",
"parse-css-class-id-selector": "^1.0.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "^1.1.5",
"deku": "^2.0.0-rc16",
"eslint": "^3.10.0",
"eslint-config-dustinspecker": "^1.0.0",
"eslint-path-formatter": "^0.1.1",
"eslint-plugin-no-use-extend-native": "^0.3.1",
"eslint-plugin-xo": "^1.0.0",
"nyc": "^8.4.0",
"react": "^15.0.0",
"semantic-release": "^4.3.5"
},
"ava": {
"files": [
"tests/test.js"
],
"require": [
"babel-register"
]
},
"nyc": {
"exclude": [
"node_modules",
"tests"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}