-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1016 Bytes
/
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
{
"name": "png-db",
"version": "1.9.4",
"description": "a simple database that uses PNG image compression to send large numbers of rows to the browser",
"main": "versions/node/dist/png-db.js",
"module": "versions/node/dist/png-db.es.js",
"jsnext:main": "versions/node/dist/png-db.es.js",
"jspm": {
"main": "versions/client/dist/png-db.es.js"
},
"author": "Sasaki Associates",
"repository": "https://github.com/sasakiassociates/png-db",
"license": "MIT",
"dependencies": {
"jimp": "^0.2.27"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"babelrc-rollup": "^3.0.0",
"mocha": "^3.0.2",
"rollup": "^0.34.7",
"rollup-plugin-babel": "^2.6.1",
"rollup-watch": "^2.5.0"
},
"scripts": {
"build": "node rollup.js"
},
"babel": {
"presets": [
"es2015"
]
}
}