-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.44 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@sundogrd/fileportal",
"version": "1.0.3",
"description": "文件传送门",
"main": "build/main/index.js",
"module": "build/module/index.js",
"typings": "build/main/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/sundogrd/fileportal-js.git"
},
"author": "lwyj123 <443474713@qq.com>",
"license": "MIT",
"files": [
"src",
"build"
],
"scripts": {
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"start": "npm run build -- -w",
"docs": "typedoc --out docs --target es6 --theme minimal --mode file src",
"lint": "eslint --project . src/**/*.ts",
"examples": "npm run build && node ./examples/examples.js",
"commitmsg": "commitlint -E GIT_PARAMS",
"test": "jest --config .jest.js"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"abab": "^2.0.0",
"axios": "^0.18.0",
"crypto-js": "^3.1.9-1",
"eventemitter3": "^3.1.0",
"tslib": "^1.9.3",
"utility-types": "^3.4.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@types/axios": "^0.14.0",
"@types/crypto-js": "^3.1.43",
"@types/jest": "^23.3.1",
"@types/node": "^10.5.2",
"@types/sinon": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"dotenv": "^4.0.0",
"envify": "^4.1.0",
"eslint": "^5.16.0",
"jest": "^23.5.0",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"regenerator-runtime": "^0.12.1",
"rollup": "^1.4.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.3",
"ts-jest": "^23.1.3",
"typedoc": "^0.14.2",
"typescript": "^3.2.4",
"uglify-es": "^3.3.10"
},
"keywords": [
"filepicker",
"upload",
"files",
"multipart"
],
"nyc": {
"exclude": [
"**/*.spec*",
"test/**"
],
"reporter": [
"lcov",
"text-summary"
]
},
"bugs": {
"url": "https://github.com/sundogrd/fileportal-js/issues"
},
"homepage": "https://github.com/sundogrd/fileportal-js#readme",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
}
}