-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "phar",
"version": "1.8.1",
"description": "Util for pack & unpack PHAR archives",
"main": "./lib/webpack/Phar.js",
"types": "./lib/webpack/Phar.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "gulp build --module es2015 --target es2016",
"build:systemjs": "gulp build --module system --target es5",
"build:webpack": "webpack",
"build:all": "npm run build & npm run build:systemjs & npm run build:webpack",
"build:test": "gulp build:test",
"test": "npm run build:webpack & npm run build:test & mocha test/build",
"docs": "typedoc --out docs/ --ignoreCompilerErrors --excludeProtected --excludePrivate --excludeExternals --module umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pharjs/phar.js.git"
},
"keywords": [
"PHAR"
],
"author": "Serge Shkurko",
"license": "ISC",
"bugs": {
"url": "https://github.com/pharjs/phar.js/issues"
},
"homepage": "https://github.com/pharjs/phar.js#readme",
"files": [
"lib/"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.4",
"chai": "^4.2.0",
"gulp": "^4.0.0",
"gulp-typescript": "^5.0.0",
"mocha": "^5.2.0",
"source-map-loader": "^0.2.3",
"ts-loader": "^5.3.2",
"typedoc": "^0.13.0",
"typescript": "^3.2.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@types/jszip": "^3.1.3",
"@types/pako": "^1.0.0",
"jshashes": "^1.0.7",
"jszip": "^3.1.5",
"pako": "^1.0.7"
}
}