-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.61 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.61 KB
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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "fluxible.io",
"private": true,
"version": "1.0.1",
"description": "fluxible.io site",
"main": "start.js",
"author": "Seth Bertalotto <sbertal@yahoo-inc.com>",
"scripts": {
"build": "grunt build",
"dev": "grunt dev",
"devtest": "mocha tests/unit --compilers js:babel/register --recursive --reporter spec",
"func": "grunt func",
"lint": "grunt jshint",
"start": "node start",
"style": "jscs .",
"test": "istanbul cover --dir ${COVERAGE_DIR:-artifacts} -- _mocha tests/unit/* --compilers js:babel/register --recursive --reporter xunit",
"test-only": "istanbul cover --dir ${COVERAGE_DIR:-artifacts} -- _mocha --recursive --reporter xunit"
},
"precommit": [
"style",
"lint",
"devtest"
],
"yahoo": {
"bugzilla": {
"component": "General",
"product": "General"
},
"custodian": {
"email": "fluxible@yahoo-inc.com"
},
"lint": "yhint",
"profile": "td-app",
"secrets": {
"kgp": [
"./secrets/fluxible.alpha.kgp",
"./secrets/fluxible.beta.kgp",
"./secrets/fluxible.prod.kgp"
]
}
},
"dependencies": {
"babel": "^4.7.8",
"body-parser": "^1.6.4",
"classnames": "^1.1.4",
"cookie-parser": "^1.3.3",
"csurf": "^1.6.3",
"debug": "^2.0.0",
"express": "^4.3.2",
"express-state": "^1.2.0",
"flux-router-component": "^0.6.0",
"fluxible": "^0.3.0",
"fluxible-plugin-fetchr": "^0.2.3",
"fluxible-plugin-routr": "~0.3.0",
"highlight.js": "^8.4.0",
"marked": "^0.3.3",
"react": "^0.13.0",
"routr": "^0.1.0",
"serialize-javascript": "^1.0.0",
"serve-favicon": "^2.1.6",
"superagent": "^0.21.0"
},
"devDependencies": {
"babel-core": "^4.7.8",
"babel-loader": "^4.1.0",
"bundle-loader": "^0.5.0",
"chai": "^2.1.0",
"chai-as-promised": "^4.1.0",
"coveralls": "^2.11.2",
"grunt": "^0.4.5",
"grunt-atomizer": "~2.0.0-beta",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "~1.0.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-cssmin": "^0.12.2",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-nodemon": "^0.3.0",
"grunt-protractor-runner": "^1.2.1",
"grunt-protractor-webdriver": "^0.2.0",
"grunt-webpack": "^1.0.8",
"istanbul": "~0.3.2",
"jscs": "^1.12.0",
"jshint": "^2.5.11",
"json-loader": "^0.5.1",
"mocha": "^2.0.1",
"mockery": "^1.4.0",
"nodemon": "^1.2.1",
"precommit-hook": "^1.0.7",
"protractor": "^1.6.1",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.6.5"
}
}