-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "@daiiz/dpi-aware-image",
"version": "2.0.7",
"description": "DPI aware image CustomElement",
"main": "lib/index.js",
"scripts": {
"demo": "node -r esm demo/server.mjs",
"watch": "run-p watch:*",
"watch:demo": "watchify demo/src/index.js -v -t babelify -o demo/dist/demo.js",
"build": "run-p build:*",
"build:babel": "./node_modules/.bin/babel src/ --out-dir lib/",
"build:browserify": "browserify src/index.js -v -t babelify -o lib/index.js",
"build:demo": "browserify demo/src/index.js -v -t babelify -o demo/dist/demo.js",
"prepublishOnly": "npm run build:babel",
"postpublish": "git push origin --tags && git push origin master"
},
"author": "Daiki Iizuka",
"license": "MIT",
"repository": "[email protected]:daiiz/dpi-aware-image.git",
"private": false,
"files": [
"lib",
"package.json",
"README.md"
],
"dependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.1.6",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"png-dpi-reader-writer": "0.0.4"
},
"devDependencies": {
"esm": "^3.1.0",
"npm-run-all": "^4.1.5",
"polka": "^0.5.1",
"serve-static": "^1.13.2",
"watchify": "^3.11.1"
}
}