-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "arraybuffer-loader",
"version": "1.0.8",
"description": "Webpack loader that returns file contents as a ArrayBuffer",
"scripts": {
"test": "npm-run-all test-browser test-node",
"test-browser": "karma start --single-run",
"test-node": "webpack && mocha test/arraybuffer-loader.bundle.js"
},
"main": "index.js",
"files": [
"lib",
"index.js",
"*.md"
],
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {
"loader-utils": "^1.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.2",
"text-encoding": "^0.7.0",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9"
},
"author": {
"name": "Pine Mizune",
"email": "[email protected]",
"url": "https://github.com/pine"
},
"repository": {
"type": "git",
"url": "https://github.com/pine/arraybuffer-loader"
},
"bugs": {
"url": "https://github.com/pine/arraybuffer-loader/issues"
},
"homepage": "https://github.com/pine/arraybuffer-loader",
"license": "MIT"
}