-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "react-tile",
"version": "0.0.0-semantically-released",
"description": "A tile ui component to display text and other media.",
"main": "dist/index.js",
"config": {
"lrport": 35729,
"port": 8080,
"host": "0.0.0.0"
},
"scripts": {
"test": "babel-node test | tap-spec",
"clean": "rm -rf example/build.js && rm -rf dist && mkdir dist",
"prebuild": "npm run clean",
"build": "browserify example/app.jsx > example/build.js",
"watch": "onchange 'index.jsx' -- npm test",
"watchify": "watchify example/app.jsx -o example/build.js",
"livereload": "lrhs -d example -b -w index.html,build.js -l $npm_package_config_lrport",
"open": "opener http://$npm_package_config_host:$npm_package_config_port/index.html",
"serve": "npm run build && parallelshell 'npm run watch -s' 'npm run watchify -s' 'npm run livereload -s' 'npm run open -s'",
"predist": "npm run clean",
"dist": "babel index.jsx > dist/index.js",
"prepublish": "npm run dist && semantic-release pre",
"postpublish": "semantic-release post"
},
"author": "David Pfahler <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "^4.3.0",
"babelify": "^5.0.3",
"browserify": "^9.0.3",
"lr-http-server": "^0.1.1",
"onchange": "^1.0.0",
"opener": "^1.4.0",
"parallelshell": "^1.0.4",
"semantic-release": "^3.0.2",
"serve-static": "^1.9.1",
"tap-spec": "^2.2.1",
"tape": "^3.5.0",
"watchify": "^2.3.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"peerDependencies": {
"react": "^0.12.2"
},
"engines": {
"iojs": "^1",
"node": "^0.10",
"npm": "^2"
},
"homepage": "https://github.com/excellenteasy/react-tile.git",
"keywords": [
"react",
"component",
"reuseable",
"es6",
"jsx",
"browserify"
],
"repository": {
"type": "git",
"url": "https://github.com/excellenteasy/react-tile.git"
},
"bugs": {
"url": "https://github.com/excellenteasy/react-tile/issues"
}
}