forked from mozillascience/PaperBadger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.04 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
{
"name": "PaperBadger",
"version": "0.1.1",
"description": "Exploring the use of digital badges for crediting contributors to scholarly papers for their work",
"main": "src/index.js",
"scripts": {
"start": "npm-run-all --parallel server watch:js",
"build:js": "webpack --config webpack.config.js --progress --profile --colors",
"watch:js": "npm run build:js -- --watch",
"clean": "rm -r public/js/*",
"server": "node src/index.js",
"jscs": "jscs -c node_modules/mofo-style/linters/.jscsrc src test webpack.config.js",
"jshint": "jshint -c node_modules/mofo-style/linters/.jshintrc src test webpack.config.js",
"jsbeautify": "js-beautify --config node_modules/mofo-style/linters/.jsbeautifyrc src/*.js test/*.js webpack.config.js -r -n",
"lint": "npm run jsbeautify && npm run jshint && npm run jscs",
"build:production": "npm run build:js -- --optimize-minimize --optimize-dedupe",
"start:production": "npm-run-all build:production server",
"test": "mocha"
},
"dependencies": {
"babel-loader": "^5.0.0",
"badgekit-api-client": "https://github.com/mozilla/badgekit-api-client/tarball/v0.2.4",
"dotenv": "~1.1.0",
"es5-shim": "^4.1.1",
"express": "~4.9.x",
"express-session": "~1.11.2",
"imports-loader": "^0.6.3",
"isomorphic-fetch": "^2.0.2",
"jade": "^1.10.0",
"js-beautify": "^1.5.5",
"jscs": "^1.13.1",
"jshint": "^2.7.0",
"jsx-loader": "^0.13.2",
"mofo-style": "^1.0.1",
"npm-run-all": "^1.2.4",
"react": "^0.13.2",
"react-router": "^0.13.3",
"simple-oauth2": "https://github.com/ORCID/simple-oauth2/archive/MASTER_2015_06_03.tar.gz",
"webpack": "^1.8.11"
},
"devDependencies": {
"supertest": "^1.0.1",
"jscs": "^1.13.1",
"js-beautify": "^1.5.5",
"jshint": "^2.7.0",
"mocha": "^2.2.5"
},
"engines": {
"node": "0.12.2"
},
"repository": {
"type": "git",
"url": "https://github.com/mozillascience/PaperBadger"
},
"keywords": [
"badges",
"science",
"node"
],
"license": "MPL-2.0"
}