-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "gaussify",
"version": "0.0.1",
"description": "Fast and intuitive lib for blurred UI's",
"main": "index.js",
"scripts": {
"start": "npm run build && http-server -c0",
"test": "cross-env NODE_ENV=test mocha --bail --timeout 20000 --inline-diffs --async-only --growl --compilers js:babel-register --recursive --require ./test/setup.js test/*.spec.js",
"test-all": "cross-env NODE_ENV=test npm run lint && npm run test && npm run build",
"build-babel": "cross-env NODE_ENV=production babel src --out-file lib/gaussify.js && npm run build-web",
"build": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.js --progress --profile --colors --display-error-details",
"clean": "rm -rf lib",
"lint": "cross-env NODE_ENV=test eslint src test",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/amilajack/gaussify.git"
},
"keywords": [
"gaussify",
"blur",
"canvas",
"gaussian"
],
"author": "Amila Welihinda",
"license": "MIT",
"bugs": {
"url": "https://github.com/amilajack/gaussify/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"http-server": "^0.10.0",
"json-loader": "^0.5.7",
"mocha": "^3.5.3",
"normalize.css": "^7.0.0",
"uglifyify": "^4.0.4",
"webpack": "^3.6.0"
},
"dependencies": {
"background-check": "github:amilajack/background-check",
"glfx.js__temp": "^1.0.2",
"ionicons": "^3.0.0",
"jquery": "^3.2.1",
"stackblur-canvas": "^1.4.0"
}
}