-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "png-dpi-reader-writer",
"version": "0.2.4",
"description": "Reader/Writer for png chunk pHYs on browsers",
"main": "lib/index.js",
"scripts": {
"start": "./node_modules/.bin/http-server -c-1 -p 9006",
"watch:demo": "watchify demo/src/index.js -v -t babelify -o demo/dist/demo.js",
"build": "run-s build:*",
"build:clean": "if test -d ./lib; then rm -r ./lib; fi",
"build:babel": "./node_modules/.bin/babel src/ --out-dir lib/",
"build:demo": "browserify demo/src/index.js -v -t babelify -o demo/dist/demo.js",
"gh-pages": "sh ./tools/gh-pages.sh",
"pretest": "npm run build",
"test": "mocha './test/*.js' --timeout 20000 --exit",
"prepublishOnly": "npm test",
"postpublish": "git push origin --tags && git push origin master"
},
"author": "Daiki Iizuka <iizuka@daiiz.org>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.1.6",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"dpi-aware-image": "github:daiiz/dpi-aware-image#master",
"gh-pages": "^2.0.1",
"http-server": "^0.11.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"watchify": "^3.11.1"
},
"dependencies": {},
"private": false,
"files": [
"lib",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/daiiz/png-dpi-reader-writer.git"
},
"keywords": [
"png",
"dpi"
]
}