-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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
{
"name": "meta",
"version": "0.0.1",
"description": "Assembly Meta",
"scripts": {
"test": "node_modules/.bin/jest",
"lint": "node_modules/.bin/jsxhint app/assets/javascripts/components/**.js.jsx app/assets/javascripts/components/**/*.js.jsx",
"postinstall": "npm run bundle",
"bundle": "node_modules/.bin/browserify -t [ babelify reactify ] app/assets/javascripts/components/**.js.jsx app/assets/javascripts/components/**/*.js.jsx app/assets/javascripts/d3/*.js -o app/assets/javascripts/components.js",
"watch": "node_modules/.bin/watchify -t [ babelify reactify ] app/assets/javascripts/components/**.js.jsx app/assets/javascripts/components/**/*.js.jsx app/assets/javascripts/d3/*.js -o app/assets/javascripts/components.js -v"
},
"repository": {
"type": "git",
"url": "https://github.com/assemblymade/meta.git"
},
"bugs": {
"url": "https://github.com/assemblymade/meta/issues"
},
"jest": {
"scriptPreprocessor": "<rootDir>/spec/javascripts/preprocessor.js",
"setupEnvScriptFile": "<rootDir>/spec/javascripts/jest_env.js",
"testDirectoryName": "spec/javascripts/flux",
"unmockedModulePathPatterns": [
"<rootDir>/app/assets/javascripts/constants",
"<rootDir>/node_modules/immutable",
"<rootDir>/node_modules/keymirror",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/underscore"
]
},
"jshintConfig": {
"asi": true
},
"homepage": "https://cove.assembly.com",
"dependencies": {
"babelify": "^5.0.4",
"browserify": "^5.9.1",
"classnames": "^1.1.4",
"colorbass": "^1.0.0",
"elasticsearch": "^3.1.1",
"flux": "^2.0.1",
"immutable": "^3.3.0",
"jquery": "^2.1.3",
"keymirror": "^0.1.0",
"marked": "^0.3.2",
"moment": "^2.8.1",
"nprogress": "^0.1.6",
"page": "^1.5.0",
"qs": "^2.3.3",
"react": "^0.12.2",
"react-router": "^0.11.6",
"react-spinner": "^0.1.9",
"reactify": "^0.17.1",
"underscore": "^1.6.0"
},
"devDependencies": {
"jest-cli": "^0.4.0",
"react-tools": "^0.12.2",
"refreshify": "0.0.0",
"watchify": "^1.0.1"
},
"engines": {
"node": "^0.10.26"
}
}