-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "h-qrcode",
"version": "0.5.1",
"description": "prettier qrcode generator",
"main": "dist/index.js",
"files": [
"src",
"dist",
"*.d.ts"
],
"types": "h-qrcode.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "npm run build:cjs && npm run build:umd",
"build:cjs": "rollup -c build/config.js --environment TARGET:cjs",
"build:umd": "rollup -c build/config.js --environment TARGET:umd",
"build:dev": "rollup -w -c build/config.js --environment TARGET:umd"
},
"repository": {
"type": "git",
"url": "https://github.com/hui-z/h-qrcode.git"
},
"keywords": [
"qrcode"
],
"author": "JingkaiZhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/hui-z/h-qrcode/issues"
},
"homepage": "https://github.com/hui-z/h-qrcode#readme",
"devDependencies": {
"rollup": "^0.43.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.0.0"
}
}