-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "reffx",
"version": "1.1.0",
"description": "A tiny utility for creating reference count-aware effects",
"keywords": [
"effect",
"reference count",
"subscription",
"disposable"
],
"repository": {
"url": "https://github.com/soul-codes/reffx"
},
"scripts": {
"clean": "rm -rf lib",
"prepare": "yarn clean && ttsc",
"watch": "tsc --watch --noEmit",
"test": "yarn test:unit:clean && yarn test:unit",
"test:unit": "jest",
"test:unit:clean": "jest --clearCache",
"release": "yarn prepare && release-it",
"tidy": "./bin/tidy.sh"
},
"license": "MIT",
"main": "lib",
"types": "lib",
"type": "module",
"devDependencies": {
"@release-it/conventional-changelog": "^1.1.0",
"@types/jest": "^24.0.25",
"@types/node": "^14.11.8",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"cz-conventional-changelog": "^3.0.2",
"import-sort-style-module": "^6.0.0",
"jest": "^24.9.0",
"prettier": "^2.0.5",
"prettier-plugin-import-sort": "^0.0.5",
"release-it": "^13.7.0",
"ts-jest": "^24.2.0",
"tslint": "^6.1.3",
"tslint-etc": "^1.13.7",
"ttypescript": "^1.5.13",
"typescript": "^4.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}