-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "node-pnglib",
"version": "1.5.4",
"description": "Pure Javascript lib for generate PNG with backend Node.js.",
"main": "./lib/pnglib.js",
"engines": {
"node": ">=4.4.0"
},
"typings": "./index.d.ts",
"scripts": {
"build": "babel src/ -d lib/",
"dev": "babel src/ --watch -d lib/",
"benchmark": "node bench/test",
"test": "mocha --reporter spec",
"coveralls": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lellansin/node-pnglib.git"
},
"keywords": [
"pictrue",
"png",
"pnglib",
"backend"
],
"author": "lellansin",
"contributors": [ { "name": "geemo", "email": "[email protected]" } ],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Lellansin/node-pnglib/issues"
},
"homepage": "https://github.com/Lellansin/node-pnglib#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"benchmark": "^2.1.4",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"pnglib": "0.0.1",
"pnglib-es6": "^1.0.1",
"should": "^11.2.1"
},
"dependencies": {
"color-name": "^1.1.3"
}
}