-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "simbol",
"version": "1.0.0-beta.11",
"description": "Easily create a social XR experience with a self-sovereign identity system",
"keywords": [
"vr",
"webxr",
"identity",
"social",
"avatar"
],
"main": "build/simbol.cjs.js",
"module": "build/simbol.js",
"repository": {
"url": "https://github.com/wearesimbol/simbol.git",
"type": "git"
},
"author": "Alberto Elias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wearesimbol/simbol/issues"
},
"homepage": "https://simbol.io",
"engines": {
"node": "^8.0.0"
},
"scripts": {
"js": "rollup -c",
"minify-script": "terser ./build/simbol.script.js --stats -c -m -o ./build/simbol.script.min.js",
"minify-script-nothree": "terser ./build/simbol.script.nothree.js --stats -c -m -o ./build/simbol.script.nothree.min.js",
"minify": "npm run minify-script-nothree && npm run minify-script",
"build": "npm run js && npm run minify",
"lint": "eslint \"./src/**/*.js\"",
"test": "karma start",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.conf.json",
"version": "npm run build && npm run docs && git add -A build/ docs/",
"postversion": "git push && git push --tags"
},
"dependencies": {
"eventemitter3": "^3.1.0",
"load-bmfont": "^1.3.0",
"npm": "^6.4.1",
"simple-peer": "^9.1.1",
"three": "^0.95.0",
"three-bmfont-text": "^2.2.1",
"uport-connect": "^0.7.3",
"webvr-polyfill": "^0.10.6"
},
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^5.3.0",
"jsdoc": "^3.5.5",
"karma": "^2.0.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.2.0",
"karma-rollup-preprocessor": "^6.0.0",
"karma-sinon": "^1.0.5",
"mocha": "^5.0.0",
"rollup": "^0.64.0",
"rollup-plugin-commonjs": "^9.1.1",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"sinon": "^6.1.0",
"terser": "^3.8.1"
}
}