-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
34 lines (34 loc) · 857 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
{
"name": "pixels.js",
"version": "1.0.0",
"description": "An image filtering library, containing over 70 image filters, supporting Node & the browser.",
"main": "dist/Pixels.js",
"scripts": {
"build:browser": "webpack",
"build:node": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"image filtering",
"image pixel manipulation",
"image processing",
"browser",
"node"
],
"author": "Silvia O'Dwyer",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"eslint": "^3.9.1",
"eslint-loader": "^1.6.1",
"lodash": "^4.16.6",
"webpack": "^4.4.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"pureimage": "^0.1.6"
}
}