-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
{
"name": "opensourcefunding.github.io",
"version": "0.0.1",
"description": "A survey on open source funding.",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "kontrol --test './src/**/*+(.spec|.test).ts' --cover-untested false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opensourcefunding/opensourcefunding.github.io.git"
},
"keywords": [
"open source",
"funding",
"open source funding"
],
"author": "Alexander Wende",
"license": "MIT",
"bugs": {
"url": "https://github.com/opensourcefunding/opensourcefunding.github.io/issues"
},
"homepage": "https://opensourcefunding.github.io",
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.3",
"rollup": "^2.7.6",
"rollup-plugin-filesize": "^8.0.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"tslint": "^6.1.2",
"tslint-clean-code": "^0.2.10",
"typescript": "^3.8.3"
},
"dependencies": {}
}