-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
78 lines (78 loc) · 2.58 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
75
76
77
78
{
"name": "@politie/sherlock",
"version": "3.4.17",
"private": true,
"description": "A reactive programming library for JavaScript applications, built with TypeScript.",
"main": "sherlock.cjs.js",
"module": "sherlock.esm.js",
"browser": "sherlock.umd.js",
"typings": "index.d.ts",
"files": [
"sherlock.{cjs,esm,umd}.*",
"**/*.d.ts"
],
"scripts": {
"clean": "rimraf coverage dist",
"build": "npm-run-all clean test lint tsc copy bundle",
"bundle": "npm-run-all bundle:*",
"bundle:remove-test-typings": "rimraf \"dist/**/*.test.d.ts\" \"dist/**/*.tests.d.ts\"",
"bundle:rollup": "rollup -c && node scripts/process-bundle",
"tsc": "npm-run-all tsc:*",
"tsc:base": "tsc -p scripts/tsconfig.base.json",
"tsc:extensions": "tsc -p scripts/tsconfig.extensions.json",
"test": "jest --coverage --runInBand --ci",
"watch": "jest --watch --testPathIgnorePatterns './tutorial'",
"watch:tutorial": "jest --watch ./tutorial",
"lint": "tslint -p tsconfig.json --format codeFrame",
"copy": "node scripts/copy-boilerplate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/politie/sherlock.git"
},
"keywords": [
"derivable",
"reactive",
"politie",
"typescript",
"derivation",
"state"
],
"contributors": [
"Paco van der Linden <[email protected]>",
"Wilfred van der Deijl <[email protected]>",
"Merijn van der Linden <[email protected]>",
"Wouter Spaak <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/politie/sherlock/issues"
},
"homepage": "https://github.com/politie/sherlock#readme",
"dependencies": {
"tslib": "^2.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^18.6.3",
"expect-more-jest": "^5.4.0",
"gzip-size": "^6.0.0",
"immutable": "^4.0.0-rc.12",
"jest": "^27.0.3",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.50.5",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-visualizer": "^5.5.0",
"rxjs": "^7.8.1",
"shelljs": "^0.8.5",
"terser": "^5.14.2",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"tslint": "^6.1.2",
"typescript": "^4.4.3"
}
}