-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "@ewb/reach",
"version": "0.3.4",
"description": "Resource and Fetch stuff",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"start": "yarn build:watch",
"build": "tsc --incremental",
"build:watch": "tsc --watch --incremental",
"lint": "tslint --project \"./tsconfig.json\"",
"test": "mocha --watch --watch-extensions ts -r ts-node/register test/**/*.spec.ts",
"test:active": "yarn test --watch -g active:",
"storybook": "start-storybook -p 9009 -s public",
"postversion": "git push && git push --tags",
"prepublish": "npm run build",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmilsWebbod/reach.git"
},
"keywords": [
"typescript",
"ts",
"reach",
"fetch",
"crud",
"api"
],
"author": "Ludens reklamebyrå",
"bugs": {
"url": "https://github.com/EmilsWebbod/reach/issues"
},
"homepage": "https://github.com/EmilsWebbod/reach#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"husky": "^4.2.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"tslint": "^5.11.0",
"typescript": "^4.2.4"
}
}