-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "zen-observable-ts",
"version": "1.2.5",
"description": "Thin wrapper around zen-observable and @types/zen-observable, to support ESM exports as well as CommonJS exports",
"license": "MIT",
"type": "module",
"main": "index.cjs",
"module": "module.js",
"types": "module.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": {
"build": "rollup -c rollup.config.js",
"prepare": "npm run build",
"pretest": "npm run build && rollup -c rollup.test.config.js",
"test": "mocha tests/bundle.cjs"
},
"dependencies": {
"zen-observable": "0.8.15"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.32",
"chai": "^4.2.0",
"mocha": "^9.0.2",
"rollup": "^2.38.4",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
}
}