-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
71 lines (71 loc) · 1.96 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
71
{
"name": "resource-loader",
"version": "4.0.0-rc4",
"main": "./dist/resource-loader.cjs.js",
"module": "./dist/resource-loader.esm.js",
"bundle": "./dist/resource-loader.js",
"types": "./dist/index.d.ts",
"description": "A generic asset loader, made with web games in mind.",
"author": "Chad Engler <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/englercj/resource-loader",
"repository": {
"type": "git",
"url": "https://github.com/englercj/resource-loader.git"
},
"bugs": {
"url": "https://github.com/englercj/resource-loader/issues"
},
"keywords": [],
"files": [
"dist",
"typings",
"package.json",
"CONTRIBUTING.md",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "rollup -c",
"watch": "rollup -cw",
"start": "npm run build",
"test": "npm run test-dev -- --single-run",
"pretest-dev": "npm run build",
"test-dev": "karma start test/karma.conf.js",
"docs": "typedoc",
"prepublishOnly": "npm run build",
"predeploy": "rimraf ./docs && npm run docs",
"deploy": "gh-pages -d docs",
"postpublish": "npm run deploy"
},
"dependencies": {
"parse-uri": "^1.0.0",
"type-signals": "^1.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"chai": "^4.2.0",
"gh-pages": "^2.2.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"mkdirp": "^1.0.3",
"mocha": "^7.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0",
"tslib": "^1.11.1",
"typedoc": "^0.16.11",
"typescript": "^3.8.3"
}
}