-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "pixer",
"version": "0.1.0",
"description": "add pixelated canvas gradient between html elements",
"main": "dist/index.js",
"jsnext:main": "dist/index.mjs",
"scripts": {
"build": "rollup -c && npm run minify && gulp",
"watch": "rollup -c -w",
"test": "./node_modules/karma/bin/karma start",
"lint": "tslint ./lib/**/*.ts -t verbose",
"minify": "uglifyjs ./dist/index.js -o ./dist/index.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iliketomatoes/pixer.git"
},
"keywords": [
"canvas",
"border",
"html",
"pixel",
"pixelated",
"gradient",
"pixel-art"
],
"author": "Giancarlo Soverini",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/iliketomatoes/pixer/issues"
},
"homepage": "https://github.com/iliketomatoes/pixer#readme",
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"chai": "^3.5.0",
"eslint": "^3.0.1",
"gulp": "^3.9.1",
"gulp-header": "^1.8.8",
"karma": "^1.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"mocha": "^3.0.2",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-watch": "^2.5.0",
"simulant": "^0.2.2",
"tslint": "^3.15.1",
"typescript": "^2.0.8",
"uglify-js": "^2.7.5"
},
"typings": "./lib/index.ts"
}