-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "warg",
"version": "2.1.1",
"description": "A basic stream/reactive library designed to make dirty reads impossible",
"main": "index.cjs",
"module": "index.mjs",
"scripts": {
"test": "npm run test:unit && npm run test:types",
"test:unit": "npm run build && rollup -c rollup.test.config.js | node | faucet && jsmd readme.md",
"test:types": "tsc --noEmit -p ./tsconfig.json && tsc --noEmit ./test.ts",
"build": "tsc --declaration --emitDeclarationOnly && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TehShrike/warg.git"
},
"keywords": [
"stream",
"reactive",
"rx"
],
"author": "TehShrike",
"license": "WTFPL",
"devDependencies": {
"better-emitter": "^2.3.0",
"faucet": "0.0.1",
"jsmd": "1.0.1",
"rollup": "^1.27.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^3.7.3",
"zora": "^3.1.6"
},
"dependencies": {}
}