-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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": "@shimo/racoon",
"version": "1.0.16",
"description": "owl data management center",
"publishConfig": {
"registry": "http://registry.npm.shimo.run"
},
"main": "dist/index.js",
"types": "d/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "find __tests__ src -name '*.ts' -exec tslint '{}' --fix \\;",
"precommit": "lint-staged",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/source/racoon.git"
},
"keywords": [],
"author": "Shimo",
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.1.5",
"husky": "^0.14.3",
"immutable": "^3.8.1",
"jest": "^23.3.0",
"lint-staged": "^7.2.0",
"prettier": "^1.14.2",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.0.1"
},
"dependencies": {
"core-js": "^2.5.7",
"redux": "^4.0.0"
}
}