-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "barcode-gen",
"version": "1.0.0",
"description": "Barcode generator app",
"repository": "IFS49F/barcode-gen",
"bin": "carlo.js",
"author": {
"name": "James Shih",
"url": "https://hyjk2000.github.io"
},
"license": "MIT",
"scripts": {
"start": "node carlo.js",
"start:web": "node koa.js",
"build:pkg": "pkg ."
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"bwip-js": "^1.7.1",
"carlo": "^0.9.41",
"koa": "^2.6.2",
"koa-body": "^4.0.6",
"koa-conditional-get": "^2.0.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"parcel-bundler": "^1.11.0",
"parcel-plugin-compress": "^1.0.6"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": "last 2 Chrome versions",
"compress": {
"threshold": 10240
},
"pkg": {
"scripts": [
"*.js"
],
"assets": [
"app/**/*",
"node_modules/bwip-js/fonts/**/*"
]
}
}