-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@biotope/resource-loader",
"version": "3.0.0-rc1.0",
"description": "A markup driven conditional loader to load resources with dependencies",
"main": "lib/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/biotope/biotope-resource-loader"
},
"contributors": [
{
"name": "Marc Emmanuel",
"email": "[email protected]",
"url": "https://github.com/SheepFromHeaven"
},
{
"name": "Timo Mayer",
"email": "[email protected]",
"url": "https://github.com/timomayer"
},
{
"name": "Jurek Barth",
"email": "[email protected]",
"url": "https://github.com/jurekbarth"
},
{
"name": "Saeid Mohadjer",
"email": "[email protected]",
"url": "https://github.com/smohadjer"
},
{
"name": "Jan Rembold",
"url": "https://github.com/janrembold"
}
],
"license": "MIT",
"scripts": {
"build": "rollup -c",
"release": "np --no-yarn --any-branch",
"start": "npm run dev && npm run serve",
"prepublishOnly": "npm run clean && npm install && npm run build",
"clean": "node_modules/.bin/rimraf node_modules",
"serve": "./bin/speed",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:report": "npm run test && codecov -t $CODECOV_TOKEN",
"docs": "cd website && npm start",
"docs:build": "cd website && npm install && npm run build"
},
"dependencies": {
"np": "^6.2.3"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"chokidar": "^3.4.0",
"codecov": "^3.6.5",
"eslint": "^7.0.0",
"jest": "^26.0.1",
"jsdom": "^16.2.2",
"prettier": "^2.0.5",
"rollup": "^2.7.6",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-visualizer": "^4.0.4",
"rollup-watch": "^4.3.1",
"ts-jest": "^26.0.0",
"tslib": "^2.0.0",
"typescript": "^3.9.2"
}
}