-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
66
67
68
69
70
71
72
73
74
{
"name": "polyrhythm",
"version": "1.3.0",
"license": "MIT",
"author": "Dean Radcliffe",
"repository": "https://github.com/deanius/polyrhythm",
"main": "dist/index.js",
"module": "dist/polyrhythm.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && size-limit",
"test": "NODE_ENV=test ts-mocha -r esm -p tsconfig.json test/*test*.ts ",
"test:watch": "NODE_ENV=test yarn test --watch --watch-files 'test/*test*.ts' --watch-files 'src/*.ts'",
"test:perf": "ts-mocha -r esm -p tsconfig.json test/perf*.ts ",
"lint": "tsdx lint",
"doc": "typedoc --theme minimal --out docs/ src/",
"doctoc": "doctoc .",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"lodash.ismatch": "^4.4.0",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.5.1",
"@size-limit/preset-small-lib": "^4.4.5",
"@types/chai": "^4.2.11",
"@types/expect": "^24.3.0",
"@types/jest": "^24.0.21",
"@types/lodash.ismatch": "^4.4.6",
"@types/mocha": "^7.0.2",
"@types/react": "^16.9.19",
"@types/sinon": "^9.0.0",
"chai": "^4.2.0",
"clear": "^0.1.0",
"esm": "^3.2.25",
"husky": "^3.0.9",
"mocha": "^7.1.1",
"react": "^16.12.0",
"rxjs-for-await": "^0.0.2",
"rxjs-marbles": "^6.0.1",
"sinon": "^9.2.3",
"size-limit": "^4.4.5",
"ts-mocha": "^7.0.0",
"tsdx": "^0.11.0",
"tslib": "^2.1.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3",
"typescript-fsa": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/polyrhythm.cjs.production.min.js",
"limit": "8 KB",
"webpack": false
}
]
}