-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 1.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@tinystate/core",
"version": "0.3.0",
"description": "A tiny state management library for Angular",
"scripts": {
"test": "jest",
"build": "ng-packagr -p package.json",
"lint:commit": "commitlint -e $GIT_PARAMS",
"format": "prettier --write --config .prettierrc src/**/*.ts",
"precommit": "lint-staged"
},
"repository": "https://github.com/SebastianM/tinystate",
"author": "Sebastian Holstein <[email protected]>",
"license": "MIT",
"devDependencies": {
"@angular/common": "^7",
"@angular/compiler": "^7",
"@angular/compiler-cli": "^7",
"@angular/core": "^7",
"@angular/platform-browser": "^7",
"@angular/platform-browser-dynamic": "^7",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-angular": "^7.3.1",
"@commitlint/travis-cli": "^7.3.2",
"@types/jest": "^22.2.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"jest-zone-patch": "^0.0.8",
"lint-staged": "^7.0.0",
"ng-packagr": "^4.6.0",
"node-sass": "^4.7.2",
"prettier": "^1.11.1",
"rxjs": "^6.0.0",
"ts-jest": "^23.10.0",
"tsickle": ">=0.34.0",
"tslib": "^1.7.1",
"typescript": ">=3.1.1 <3.3",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/core": "^6.0.0 || ^7.0.0",
"rxjs": "^6.0.0 || ^7.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"npm run format",
"git add"
]
},
"jest": {
"setupTestFrameworkScriptFile": "./setup-jest.js",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/src/.*\\.spec)\\.ts$",
"moduleFileExtensions": [
"js",
"ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/public_api.ts"
]
}
}