-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "blaubergventojs",
"version": "1.0.0-alpha.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"publishConfig": {
"access": "public"
},
"scripts": {
"integration": "jest -c jest.config.integration.js",
"test": "jest --collect-coverage",
"build": "npm test && rm -rf dist && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelkrog/blaubergventojs.git"
},
"author": "Apaq",
"bugs": {
"url": "https://github.com/michaelkrog/blaubergventojs/issues"
},
"homepage": "https://github.com/michaelkrog/blaubergventojs#readme",
"license": "MIT",
"files": [
"/dist"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"esbuild": "^0.14.15",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"rollup": "^2.52.7",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.3"
},
"dependencies": {
"@apaq/leap-data-core": "^1.0.2",
"typescript": "^4.2.3"
}
}