-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 KB
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
{
"name": "js-data-rest",
"version": "1.0.1",
"description": "JS package for handling HATEOAS-JSON structures",
"main": "lib/JsDataRest.js",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"start": "npm run build",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepsource/JsDataRest.git"
},
"keywords": [],
"author": "Sebastian Ullrich (https://deepsource.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/deepsource/JsDataRest/issues"
},
"homepage": "https://github.com/deepsource/JsDataRest#readme",
"dependencies": {
"@types/lodash": "^4.14.123"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000"
},
"files": [
"lib/**/*"
]
}