-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.82 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.82 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "papan",
"productName": "Papan",
"version": "0.0.1",
"description": "A turn-by-turn board game engine",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"start-headless": "node .",
"lint": "standard **/*.js **/*.html | snazzy",
"polymer_lint": "node ./node_modules/polymer-cli/bin/polymer.js lint",
"node_test": "mocha test/common test/nodejs -r test/utils/coverage.js --reporter mocha-multi-reporters --reporter-options configFile=config-nodejs.json",
"nyc_instrument": "rimraf instrumented && nyc instrument src instrumented --produce-source-map",
"electron_test": "electron-mocha test/common test/electron -r test/utils/coverage.js --reporter mocha-multi-reporters --reporter-options configFile=config-electron.json",
"test": "rimraf .nyc_output && npm run nyc_instrument && npm run node_test && npm run electron_test && npm run lint && npm run polymer_lint",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"reports": "npm test && nyc report --reporter=html && opn ./coverage/index.html && opn ./node-report.html && opn ./electron-report.html",
"postinstall": "bower install && bower prune && node ./post-install-patch.js",
"electron_rebuild": "npm rebuild --runtime=electron --target=1.8.4 --dist-url=https://atom.io/download/electron",
"build": "electron-packager . --all --out=out"
},
"standard": {
"env": [
"mocha"
],
"plugin": [
"html"
],
"globals": [
"PapanLocalize",
"Polymer"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/grumpycoders/papan.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/grumpycoders/papan/issues"
},
"homepage": "https://github.com/grumpycoders/papan#readme",
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.0",
"devtron": "^1.4.0",
"dirty-chai": "^2.0.1",
"electron": "~1.8.4",
"electron-mocha": "^6.0.1",
"electron-packager": "^12.0.1",
"eslint-plugin-html": "^4.0.3",
"mocha": "^5.1.1",
"mocha-multi-reporters": "^1.1.7",
"mocha-simple-html-reporter": "^1.1.0",
"nyc": "^11.7.1",
"opn-cli": "^3.1.0",
"polymer-cli": "^1.6.0",
"rimraf": "^2.6.2",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"dependencies": {
"@babel/preset-env-standalone": "^7.0.0-beta.46",
"@babel/standalone": "^7.0.0-beta.46",
"base64url": "^2.0.0",
"body-parser": "^1.17.2",
"bower": "^1.8.0",
"browser-detect": "^0.2.27",
"codecov": "^3.0.4",
"command-line-args": "^5.0.2",
"connect-pg-simple": "^4.2.0",
"deep-diff": "^1.0.0",
"deepclone": "^1.0.2",
"deepmerge": "^2.1.0",
"diff": "^3.5.0",
"electron-settings": "^3.1.4",
"event-emitter-es6": "^1.1.5",
"express": "^4.14.1",
"express-session": "^1.15.3",
"express-winston": "^2.5.0",
"grpc": "^1.9.1",
"ip": "^1.1.5",
"lodash": "^4.17.5",
"nat-upnp": "^1.1.1",
"openid-client": "^2.0.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-steam": "^1.0.8",
"passport-twitter": "^1.0.4",
"patch-module": "^0.1.0",
"pg": "^6.4.0",
"protobufjs": "~6.8.6",
"random-words": "^1.1.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"recursive-readdir": "^2.2.2",
"redis": "^2.7.1",
"redis-mock": "^0.21.0",
"redis-sessions": "^1.3.0",
"redux": "^4.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"seedrandom": "^2.4.3",
"sequelize": "^4.35.2",
"socket.io": "^2.1.0",
"socket.io-client": "^2.1.0",
"spinkit": "^1.2.5",
"umzug": "^2.0.1",
"uuid": "^3.2.1",
"webtorrent": "^0.99.0",
"webtorrent-hybrid": "^1.0.6",
"winston": "^2.3.1"
}
}