-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "ahdin",
"version": "1.1.0",
"description": "Lossy image compression module for JavaScript applications.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
"test": "npm run lint && npm run test-tape",
"test-tape": "browserify test/*.ts -p tsify -t brfs | tape-run | tap-spec",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push --tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastmonkeys/ahdin.git"
},
"author": "Janne Vanhala <janne@fastmonkeys.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastmonkeys/ahdin/issues"
},
"homepage": "https://github.com/fastmonkeys/ahdin#readme",
"dependencies": {
"blob-util": "^2.0.2",
"blueimp-load-image": "^2.6.1"
},
"devDependencies": {
"@types/tape": "^4.2.28",
"almost-equal": "^1.1.0",
"brfs": "^1.4.3",
"browserify": "^13.1.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-run": "^2.1.4",
"tsify": "^2.0.3",
"tslint": "^4.0.2",
"typescript": "^2.0.10"
}
}