-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@biotope/configuration",
"version": "2.1.0",
"description": "configurationLoader loads configurations from a json file and then merges them with existing configurations",
"main": "dist/configurationLoader.min.js",
"scripts": {
"release": "np --no-yarn",
"build": "rollup -c",
"test": "jest",
"test:report": "npm run test && codecov",
"docs": "docsify serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biotope/biotope-configuration.git"
},
"keywords": [
"configuration",
"state manager",
"loader",
"biotope"
],
"contributors": [
{
"name": "Marc Emmanuel",
"email": "marc.emmanuel@virtual-identity.com",
"url": "https://github.com/SheepFromHeaven"
},
{
"name": "Timo Mayer",
"email": "timo.mayer@virtual-identity.com",
"url": "https://github.com/timomayer"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/biotope/biotope-configuration/issues"
},
"homepage": "https://github.com/biotope/biotope-configuration",
"devDependencies": {
"@types/jest": "^24.9.1",
"codecov": "^3.5.0",
"docsify-cli": "^4.3.0",
"jest": "^24.8.0",
"np": "^5.0.3",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-visualizer": "^2.5.4",
"ts-jest": "^24.0.2",
"typescript": "^3.7.5"
},
"dependencies": {}
}