forked from ZeroarcSoftware/carbondream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.43 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
75
76
77
78
79
80
81
82
83
84
{
"name": "carbondream",
"version": "0.3.0",
"description": "React web annotation engine",
"homepage": "http://carbondream.zeroarc.com/",
"main": "dist/entry.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "NODE_ENV=production $(npm bin)/babel src/ -d dist/ && cp -r node_modules/font-awesome/css web && cp -r node_modules/font-awesome/fonts web",
"watch": "NODE_ENV=production $(npm bin)/babel --watch src/ -d dist/ && cp -r node_modules/font-awesome/css web && cp -r node_modules/font-awesome/fonts web",
"demo-watch": "$(npm bin)/watchify --extension=.jsx -d -e src/demo.jsx -s CarbonDream -o test/index.js -v ",
"demo-build": "$(npm bin)/browserify --extension=.jsx -e src/demo.jsx -s CarbonDream -o test/index.js && cp -r node_modules/font-awesome/css web && cp -r node_modules/font-awesome/fonts web",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ZeroarcSoftware/carbondream.git"
},
"keywords": [
"react",
"react-component",
"annotation"
],
"author": "Zeroarc Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZeroarcSoftware/carbondream/issues"
},
"browserify": {
"transform": [
[
"babelify",
{
"sourceMaps": "inline",
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-decorators-legacy",
"transform-object-rest-spread"
]
}
]
]
},
"babel": {
"sourceMaps": "inline",
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-decorators-legacy",
"transform-object-rest-spread"
]
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"install": "^0.6.1",
"npm": "^3.8.6",
"react-addons-shallow-compare": "^15.0.1",
"reflux": "^0.4.1",
"watchify": "^3.7.0"
},
"dependencies": {
"autobind-decorator": "^1.3.3",
"classnames": "^2.2.3",
"font-awesome": "^4.5.0",
"immutable": "^3.7.6",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-timeago": "^3.0.0-beta.3"
}
}