-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "redux-orm-types",
"version": "0.13.4",
"description": "Redux-ORM typings development project, type declaration experiments and alike",
"keywords": [
"redux-orm",
"typescript",
"typings",
"types",
"static typing"
],
"files": [
"*.d.ts",
"db/*"
],
"dependencies": {},
"author": {
"name": "Tomasz Zabłocki",
"email": "tomasz.zablocki@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^12.0.3",
"cpy-cli": "^2.0.0",
"dtslint": "latest",
"mkdirp": "^0.5.1",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"types-publisher": "github:Microsoft/types-publisher#production",
"typescript": "next"
},
"repository": {
"type": "git",
"url": "github:tomasz-zablocki/redux-orm-types"
},
"bugs": {
"url": "https://github.com/tomasz-zablocki/redux-orm-types/issues"
},
"scripts": {
"clean": "rimraf ./*.d.ts ./db",
"build": "cpy **/*.d.ts ../.. --cwd=types/redux-orm --parents",
"prepare": "npm run build",
"test": "dtslint types redux-orm",
"diag": "cd types/redux-orm/ && tsc --extendedDiagnostics -p tsconfig.diag.json && cd ../..",
"diag-test": "cd types/redux-orm/ && tsc --extendedDiagnostics && cd ../.."
}
}