-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 952 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 952 Bytes
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
{
"name": "@felfel/restclient",
"version": "0.1.5",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/felfel/restclient",
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/react-native": "^0.56.8",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.0.1"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --single-quote --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src"
},
"dependencies": {
"date-fns": "^1.29.0",
"humps": "^2.0.1"
}
}