-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "study-js-typedarray-blob-201801",
"version": "1.0.0",
"description": "Study for JavaScript Buffer/ArrayBuffer/Blob/File APIs and HTML5 multipart CSRF exercise at Jan 2018.",
"main": "src/mocha-node.js",
"scripts": {
"lint": "standard src/**/*.js",
"build": "webpack",
"build:w": "webpack --progress --colors --watch",
"start": "static -p 9000 browser",
"start:dev": "webpack-dev-server",
"clean": "rm -rf browser/build/*.js test/*.js",
"test": "mocha"
},
"author": "[email protected]",
"license": "MIT",
"standard": {
"global": [
"mocha",
"describe",
"it",
"Blob",
"File",
"FileReader",
"TextEncoder",
"TextDecoder",
"location",
"window",
"document",
"screen",
"MouseEvent",
"KeyboardEvent"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-power-assert": "^2.0.0",
"css-loader": "^0.28.9",
"mocha": "^5.0.0",
"node-static": "^0.7.10",
"power-assert": "^1.4.4",
"standard": "^10.0.3",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"bowser": "^1.9.1",
"jquery": "^3.3.1"
}
}