-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "@apaq/leap-data-core",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"publish-lib": "npm run build && npm publish",
"publish-beta": "npm run build && npm publish --tag beta",
"publish-dryrun": "npm run build && npm publish --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Apaq/leap-data-core.git"
},
"author": "Apaq",
"bugs": {
"url": "https://github.com/Apaq/leap-data-core/issues"
},
"homepage": "https://github.com/Apaq/leap-data-core#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"/dist"
],
"devDependencies": {
"esbuild": "^0.12.15",
"load-json-file": "^7.0.1",
"rollup": "^2.52.7",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-terser": "^7.0.2",
"write-json-file": "^5.0.0"
},
"dependencies": {
"rxjs": ">=7.8.0",
"typescript": "^4.2.3"
}
}