forked from mozilla/id.webmaker.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.42 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "id.webmaker.org",
"version": "1.0.0",
"description": "OAuth 2.0 identity provider for Webmaker https://id.webmaker.org",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel server watch:css watch:js ",
"test": "npm run lint && npm run test:server && npm run test:browser",
"build": "npm run build:css && npm run build:js",
"build:production": "npm run build:css && npm run build:js -- --optimize-minimize --optimize-dedupe",
"build:css": "npm run watch:css -- --no-watch",
"build:js": "webpack --config webpack.config.js --progress --profile --colors",
"jscs": "jscs -c node_modules/mofo-style/linters/.jscsrc lib test web webpack.config.js",
"jshint": "jshint -c node_modules/mofo-style/linters/.jshintrc lib test web webpack.config.js",
"jsbeautify": "js-beautify lib test web *.js -r",
"lint": "npm run jshint && npm run jscs",
"preinstall": "node scripts/ensure-env",
"postinstall": "node scripts/build",
"test:setup": "npm run test:droptables && npm run test:createtables && npm run test:insertdata",
"test:droptables": "node scripts/drop-tables",
"test:createtables": "node scripts/create-tables",
"test:insertdata": "node scripts/test-data",
"pretest:browser": "ncp node_modules/mocha/mocha.js public/tests/mocha.js && ncp node_modules/mocha/mocha.css public/tests/mocha.css",
"test:browser": "npm run build && mocha-phantomjs -s loadImages=false public/tests/index.html",
"test:server": "npm run test:setup && lab -t 95",
"watch:js": "npm run build:js -- --watch",
"watch:css": "autoless --source-map templates/less public",
"server": "node web/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/id.webmaker.org"
},
"keywords": [
"OAuth",
"webmaker",
"id.webmaker.org",
"login"
],
"author": "Webmaker",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/id.webmaker.org/issues"
},
"homepage": "https://github.com/mozilla/id.webmaker.org",
"dependencies": {
"autoless": "0.1.7",
"babel-loader": "5.0.0",
"blankie": "1.1.0",
"boom": "2.6.1",
"bootstrap": "3.3.4",
"bunyan": "1.3.5",
"catbox-redis": "1.0.5",
"cookie-js": "0.0.1",
"cross-spawn": "0.2.9",
"crumb": "4.0.3",
"es5-shim": "4.1.0",
"es6-promise": "2.0.1",
"flux": "2.0.1",
"font-awesome": "4.3.0",
"habitat": "3.1.2",
"hapi": "11.1.4",
"hapi-auth-cookie": "2.0.0",
"hapi-bunyan": "0.6.0",
"hoek": "2.11.1",
"hyperquest": "1.0.1",
"imports-loader": "0.6.3",
"inert": "3.1.0",
"isomorphic-fetch": "2.0.1",
"joi": "6.0.8",
"jsx-loader": "0.12.2",
"less": "1.7.5",
"pass-test": "1.0.3",
"pg": "4.3.0",
"react": "0.12.2",
"react-ga": "1.0.10",
"react-router": "0.12.4",
"react-router-stub": "0.0.6",
"react-router-viewports": "0.0.4",
"react-validation-mixin": "4.0.3",
"redis-url": "1.2.1",
"scooter": "2.0.1",
"should": "5.2.0",
"webpack": "1.7.3"
},
"devDependencies": {
"bulk-require": "0.2.1",
"code": "1.3.0",
"js-beautify": "1.5.5",
"jscs": "1.11.3",
"jshint": "2.6.3",
"json-loader": "0.5.1",
"lab": "13.1.0",
"less": "2.4.0",
"mocha": "2.2.1",
"mocha-phantomjs": "3.6.0",
"mofo-style": "1.1.0",
"ncp": "2.0.0",
"npm-run-all": "1.1.3",
"phantomjs": "1.9.7-14"
},
"engines": {
"node": "^4.8.4"
}
}