forked from apollographql/zen-observable-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1007 Bytes
/
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": "zen-observable-ts",
"version": "1.0.0",
"description": "Thin wrapper around zen-observable and @types/zen-observable, to support ESM exports as well as CommonJS exports",
"license": "MIT",
"main": "index.js",
"module": "module.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/zen-observable-ts.git"
},
"bugs": {
"url": "https://github.com/apollographql/zen-observable-ts/issues"
},
"scripts": {
"pretest": "rollup -c rollup.config.js",
"test": "mocha tests/bundle.js"
},
"dependencies": {
"@types/zen-observable": "^0.8.2",
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.1.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^15.3.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"rollup": "^2.38.4",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
}
}