-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.49 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": "dsbapi",
"version": "4.1.1",
"description": "An api for mobile.dsbcontrol.de",
"author": "Nils Bergmann <[email protected]>",
"license": "Apache-2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/index.js",
"files": [
"dist/",
"yarn.lock",
"docs"
],
"scripts": {
"test": "mocha --timeout 7000",
"generate-doc": "esdoc",
"build": "npm-run-all build:esm build:cj build:umd",
"build:esm": "rollup src/index.js --format es --name \"dsbapi\" --file ./dist/esm/index.js",
"build:cj": "rollup src/index.js --format cjs --name \"dsbapi\" --file ./dist/cjs/index.js",
"build:umd": "rollup src/index.js --format umd --name \"dsbapi\" --file ./dist/index.js",
"patch": "npm version patch && git push --follow-tags",
"minor": "npm version minor && git push --follow-tags",
"major": "npm version major && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/TheNoim/DSBAPI.git"
},
"keywords": [
"dsb",
"api",
"mobile"
],
"dependencies": {
"axios": "^0.22.0",
"pako": "^2.0.4",
"percentage-calc": "^0.0.1"
},
"devDependencies": {
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"esdoc": "^1.1.0",
"esdoc-external-ecmascript-plugin": "^1.0.0",
"esdoc-external-nodejs-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"joi": "^17.4.2",
"jsome": "^2.3.26",
"minami": "^1.2.3",
"mocha": "^9.1.2",
"npm-run-all": "^4.1.5",
"rollup": "2.58.0"
}
}