This repository has been archived by the owner on Sep 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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": "albedo.js",
"version": "0.0.1",
"description": "Minimal and efficient rendering library.",
"repository": "[email protected]:albedo-engine/albedojs.git",
"bugs": "https://github.com/albedo-engine/albedojs/issues",
"author": "David Peicho <[email protected]>",
"license": "MIT",
"keywords": [
"3D",
"rendering",
"webgl"
],
"module": "dist/albedo.min.js",
"files": [
"package.json",
"LICENSE",
"README.md",
"dist/albedo.js",
"dist/albedo.min.js",
"src"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.11.0",
"karma": "^3.1.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^6.1.1",
"mocha": "^5.2.0",
"path": "^0.12.7",
"prettier": "^1.14.1",
"puppeteer": "^1.11.0",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-typescript2": "^0.18.1",
"rollup-plugin-uglify": "^4.0.0",
"serve": "^7.1.5",
"tslint": "^5.12.1",
"typescript": "^3.2.2",
"uglify-es": "^3.3.9"
},
"scripts": {
"dev": "concurrently \"serve --listen 8080\" \"npm run build-dev\"",
"build": "rollup -c config/prod.config.js",
"build-dev": "rollup -c config/dev.config.js -w",
"lint": "eslint src test",
"test-unit": "karma start test/karma.conf.js --entry=unit",
"test-integration": "karma start test/karma.conf.js --entry=integration"
},
"dependencies": {
"global": "^4.3.2"
}
}