-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "simple-nicu-calcs",
"version": "0.0.1",
"deprecated": false,
"description": "Simple NICU calculators",
"scripts": {
"start": "rollup -c -w & httpster -p 8080",
"start-c9": "rollup -c -w & httpster -p $PORT",
"build": "rollup -c",
"serve": "httpster -p 8080",
"lint": "eslint src/*.{js,mjs} --fix"
},
"contributors": [
"Brent McSharry <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/mcshaz/simple-nicu-calcs.git"
},
"bugs": "https://github.com/mcshaz/simple-nicu-calcs/issues",
"homepage": "git://github.com/mcshaz/simple-nicu-calcs#readme",
"keywords": [
"nicu",
"calculators",
"lmp",
"edc"
],
"analyze": true,
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"dynamic-import-polyfill": "^0.1.1",
"eslint": "^6.8.0",
"esm-date-input-polyfill": "^6.1.0",
"httpster": "^1.1.0",
"rollup": "^2.7.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-delete": "^1.2.0",
"rollup-plugin-terser": "^5.3.0"
},
"dependencies": {}
}