-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"name": "reacterminator",
"engines": {
"node": ">=6.0.0"
},
"description": "Convert html files to react components",
"main": "lib/index.js",
"bin": {
"reacterminator": "bin/reacterminator.js",
"rt": "bin/reacterminator.js"
},
"scripts": {
"fix": "eslint --fix lib/**",
"lint": "eslint lib/**",
"test": "npm run lint && istanbul cover _mocha && coveralls < coverage/lcov.info",
"watch": "rm -rf ./reacterminator && mocha --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/poetic/reacterminator"
},
"keywords": [
"react",
"html",
"converter",
"generator",
"html to react"
],
"author": "Chun-Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/poetic/reacterminator/issues"
},
"homepage": "https://github.com/poetic/reacterminator",
"devDependencies": {
"eslint-config-poetic": "^1.0.1",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"semantic-release": "^4.3.5"
},
"dependencies": {
"babel-traverse": "git://github.com/poetic/babel-traverse.git#3272f03380b22ebf1608b0a9b89bff991c746695",
"babel-generator": "^6.11.0",
"babylon": "^6.8.2",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"commander": "git://github.com/tj/commander.js.git#c6236d9504b60d9a2e6aa7fc3ce17a12f48f4a3e",
"esformatter": "^0.9.5",
"esformatter-eol-last": "^1.0.0",
"esformatter-jsx": "^7.0.1",
"esformatter-quotes": "^1.1.0",
"esformatter-semicolons": "^1.1.2",
"lodash": "^4.13.1",
"shelljs": "^0.7.0"
}
}