-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "@gecks/utility-types",
"version": "0.3.1-dev",
"description": "A collection of very useful TypeScript type declarations",
"main": "./lib/index.d.ts",
"types": "./lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"typecheck:source": "tsc --build src/tsconfig-check.json",
"typecheck:tests": "tsc --build test",
"typecheck": "npm run typecheck:source && npm run typecheck:tests",
"test": "",
"lint:source": "eslint src/**",
"lint:tests": "eslint test/**",
"lint": "npm run lint:source && npm run lint:tests",
"lint:source-fix": "eslint --fix src/**",
"lint:tests-fix": "eslint --fix test/**",
"lint:fix": "npm run lint:source-fix && npm run lint:tests-fix",
"build:declarations": "tsc --build src",
"clean:lib": "rimraf lib",
"ready": "npm run lint && npm run typecheck && npm run build:declarations",
"release": "np"
},
"repository": {
"url": "https://github.com/RWalkling/utility-types"
},
"author": "Raphael Walkling",
"license": "ISC",
"dependencies": {
"@types/node": "^12.7.2",
"typescript": "^3.7.0-dev.20190927"
},
"devDependencies": {
"eslint": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"np": "^5.0.3"
}
}