-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "codocs",
"version": "1.0.0",
"private": true,
"description": "Collaborative Docs",
"main": "server.js",
"directories": {
"test": "test"
},
"dependencies": {
"atob": "^2.0.3",
"google-id-token-verifier": "^0.2.3",
"js-md5": "^0.4.1",
"y-websockets-server": "^9.1.4",
"yjs": "^12.2.0"
},
"devDependencies": {
"concurrently": "^3.4.0",
"polymer-cli": "^0.17.0"
},
"standard": {
"globals": [
"AppBehaviors",
"Polymer"
]
},
"scripts": {
"test": "polymer test",
"build": "rm -rf build && polymer build",
"build_images": "cd images; sh convertimages.sh; cd ..;",
"serve": "concurrently \"polymer serve -p 8080\" \"node server\"",
"serve:dist": "polymer build && concurrently \"polymer serve build/unbundled -p 8080\" \"node server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codocs/codocs.github.io.git"
},
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codocs/codocs/issues"
},
"homepage": "https://codocs.github.io",
"engines": {
"node": "6.8.1"
}
}