-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.65 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
{
"name": "@digitalungdom-se/dupi-js",
"version": "1.0.0",
"description": "JavaScript bindings for Digital Ungdom's openAPI",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"lint": "node_modules/typescript/bin/tsc --noEmit && node_modules/eslint/bin/eslint.js 'src/**/*.ts' --fix && echo '✔️ nice'",
"prebuild": "npm run lint -s",
"build": "node_modules/typescript/bin/tsc",
"test": "echo \"Error: no test specified\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitalungdom-se/dupi-js.git"
},
"author": "Kelvin Szolnoky",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/digitalungdom-se/dupi-js/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"homepage": "https://github.com/digitalungdom-se/dupi-js#readme",
"devDependencies": {
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.45",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-security": "^1.4.0",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"directories": {
"lib": "lib",
"test": "test"
}
}