-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 KB
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
{
"name": "json-immutable",
"version": "1.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint-fix": "tslint -c ./tslint.json --project ./tsconfig.json --fix",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json",
"prettier": "prettier \"{src,test}/**/*.{js,jsx,ts,tsx}\" --write",
"test": "npm run build && ava",
"typecheck": "tsc --noEmit --listFiles false"
},
"lint-staged": {
"{src}/**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "echo 'Running TSLint' && npm run lint && echo 'Running Typechecks' && npm run typecheck"
}
},
"peerDependencies": {
"immutable": "^4.0.0-rc.12"
},
"dependencies": {
"@types/node": "^11.10.0",
"json-stream-stringify": "^1.5.x"
},
"devDependencies": {
"ava": "^1.2.1",
"husky": "^1.3.1",
"immutable": "^4.0.0-rc.12",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333"
},
"repository": {
"type": "git",
"url": "https://github.com/avocode/json-immutable"
}
}