-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·40 lines (40 loc) · 1.24 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
{
"name": "twister-react",
"version": "1.0.0",
"description": "proxy-based Twister client written with react-js",
"main": "index.js",
"dependencies": {
"classnames": "*",
"react-bootstrap": "*",
"react": "*",
"react-router": "*",
"react-router-bootstrap": "*",
"react-dom": "*",
"react-wysiwyg": "*",
"react-addons-css-transition-group": "*"
},
"devDependencies": {
"react-tools": "*",
"browserify": "*"
},
"scripts": {
"test": "jsx jsx build-buffer && node test/PosContentTest.js",
"watch": "watch \"npm run pull-lib-and-build\" jsx",
"build": "jsx jsx build-buffer && browserify build-buffer/App.js -o build/app-bundle.js",
"pull-lib-and-build": "cd ../twister-lib-js && npm run bundle && cd ../twister-react && cp ../twister-lib-js/twister-lib.js build && jsx jsx build-buffer && browserify build-buffer/App.js -o build/app-bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tschaul/twister-react.git"
},
"keywords": [
"react",
"twister"
],
"author": "Julian Steinwachs",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tschaul/twister-react/issues"
},
"homepage": "https://github.com/Tschaul/twister-react#readme"
}