forked from saul-jb/js-untar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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": "js-untar",
"version": "2.0.0",
"description": "untar files in the browser",
"main": "build/dist/untar",
"types": "build/dev/untar.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "gulp",
"test": "gulp test",
"example": "gulp example"
},
"repository": {
"type": "git",
"url": "https://github.com/InvokIT/js-untar.git"
},
"keywords": [
"js",
"untar",
"browser",
"extract"
],
"author": "Sebastian Joergensen, InvokIT <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/InvokIT/js-untar/issues"
},
"homepage": "https://github.com/InvokIT/js-untar",
"devDependencies": {
"gulp": "^3.9.0",
"gulp-add-src": "^0.2.0",
"gulp-concat": "^2.6.0",
"gulp-filter": "^3.0.1",
"gulp-insert": "^0.5.0",
"gulp-jshint": "^1.11.2",
"gulp-sourcemaps": "^1.12.1",
"gulp-uglify": "^1.3.0",
"gulp-umd": "^0.2.0",
"gulp-webserver": "^0.9.1",
"jasmine-core": "^2.99.1",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-requirejs": "^0.2.2",
"lodash": "^4.17.10",
"requirejs": "^2.1.20"
}
}