-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 2.08 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
{
"name": "chartbuilder-ui",
"version": "1.7.0",
"description": "React components used in chartbuilder",
"main": "index.js",
"scripts": {
"example-html": "mkdir -p ./example && cp ./example-src/index.html ./example",
"watch-css": "stylus -w ./styl/example.styl --use ./node_modules/nib/lib/nib --out ./example/styles.css",
"build-css": "stylus ./styl/chartbuilder-ui.styl --out ./dist/styles.css",
"watch-js": "watchify -v -d example.js -o ./example/main.js",
"dev": "npm run example-html && npm run watch-css & npm run watch-js",
"start": "http-server ./example",
"build-example": "npm run example-html && browserify example.js -o ./example/main.js && stylus ./styl/example.styl --use ./node_modules/nib/lib/nib --out ./example/styles.css",
"build": "npm run example-html && npm run build-css",
"version": "npm run build && git add -A dist",
"gh-pages": "git push origin :gh-pages && npm run build-example && git subtree push --prefix example origin gh-pages",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Quartz/chartbuilder-ui"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"react"
]
}
]
]
},
"keywords": [
"React",
"react-components",
"chartbuilder",
"ui"
],
"author": "quartz",
"contributors": [
"Yitz Jordan",
"Amalia Viti",
"Nikhil Sonnad",
"David Yanofsky"
],
"license": "ISC",
"dependencies": {
"classnames": "^2.2.1",
"react-addons-css-transition-group": "^0.14.8",
"react-addons-perf": "^0.14.7",
"react-addons-pure-render-mixin": "^0.14.7",
"react-dom": "^0.14.7",
"react-tangle": "git://github.com/Quartz/react-tangle.git#mb-pages"
},
"devDependencies": {
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browserify": "^8.1.3",
"http-server": "^0.8.0",
"nib": "^1.1.0",
"stylus": "^0.50.0",
"watchify": "^2.3.0"
},
"peerDependencies": {
"react": "^0.14.7"
}
}