-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.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
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
{
"name": "insulin-calc",
"version": "1.2.6",
"description": "Safer Insulin Project",
"main": "js/insulin-calc.js",
"browser": "js/insulin-calc.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test.js",
"gulp": "gulp",
"browserify": "./node_modules/browserify/bin/cmd.js -d -s calc -o ./dist/js/insulin-calc.js ./js/insulin-calc.js",
"cp": "cp ./dist/js/insulin-calc.js ./app/www/js/insulin-calc.js",
"build": "npm run gulp && npm run browserify && npm run cp",
"nyc": "nyc --reporter=html --reporter=text mocha ./test.js",
"coverage": "nyc --reporter=text-lcov mocha ./test.js | coveralls",
"zip": "zip -r app.zip app",
"preinstall": "npm install --package-lock-only --ignore-scripts && npx npm-force-resolutions"
},
"homepage": "https://saferinsulin.org",
"bugs": {
"url": "https://github.com/jplomas/saferinsulin/issues",
"email": "[email protected]"
},
"files": [
"/js/insulin-calc.js"
],
"repository": {
"type": "git",
"url": "https://github.com/jplomas/saferinsulin.git"
},
"keywords": [
"insulin",
"calculator",
"medical"
],
"author": "JP Lomas, [email protected]",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"browser-sync": "^2.26.13",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"del": "^6.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-html-replace": "^1.6.2",
"gulp-minify-html": "^1.0.6",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"js-yaml": "^3.14.1",
"merge-stream": "^1.0.1",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"yargs-parser": "^20.2.7"
},
"dependencies": {
"fastclick": "^1.0.6"
},
"resolutions": {
"trim-newlines": "^4.0.2",
"glob-parent": "^6.0.0"
}
}