This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
forked from politie/sherlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.64 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
79
80
{
"name": "@politie/sherlock",
"version": "3.1.0",
"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",
"lint": "tslint -p tsconfig.json --format codeFrame",
"copy": "node scripts/copy-boilerplate.js",
"ci:travis": "npm run build && cat coverage/lcov.info | node_modules/.bin/coveralls",
"ci:circle": "npm run build"
},
"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.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"coveralls": "^3.1.0",
"gzip-size": "^5.1.1",
"immutable": "^4.0.0-rc.12",
"jest": "^26.0.1",
"jest-extended": "^0.11.5",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.10.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-visualizer": "^4.0.4",
"rxjs": "^6.5.5",
"shelljs": "^0.8.4",
"terser": "^4.6.13",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"typescript": "^3.9.2"
}
}