-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "crunchyroll-lib",
"version": "1.2.2",
"main": "bundles/crunchyroll-lib.umd.js",
"types": "index.d.ts",
"module": "index.js",
"es2015": "es2015/index.js",
"files": [
"**/**"
],
"scripts": {
"clean": "shx rm -rf dist",
"build": "npm run clean && tsc && tsc -m es6 --outDir dist/es2015 && webpack && shx cp package.json dist/package.json && shx cp README.md dist/README.md",
"yarn:publish": "yarn run build && cd dist && yarn publish && cd .."
},
"author": {
"name": "Jeppe Rune Mortensen",
"email": "[email protected]",
"url": "https://github.com/YePpHa"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/YePpHa/crunchyroll-lib"
},
"bugs": {
"url": "https://github.com/YePpHa/crunchyroll-lib/issues"
},
"dependencies": {
"aes-js": "^3.1.0",
"base64-js": "^1.2.3",
"big-integer": "^1.6.26",
"pako": "^1.0.6",
"sax": "^1.2.4",
"text-encoding": "^0.6.4"
},
"devDependencies": {
"@types/base64-js": "^1.2.5",
"@types/pako": "^1.0.0",
"@types/request": "^2.0.11",
"@types/sax": "^1.0.0",
"@types/text-encoding": "^0.0.32",
"awesome-typescript-loader": "^4.0.1",
"shx": "^0.2.2",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^1.2.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"optionalDependencies": {
"request": "^2.85.0"
}
}