-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
{
"name": "yet-another-resizer",
"version": "0.0.0-semantically-released",
"author": "Danii Nebot <[email protected]>",
"description": "Yet another implementation of client size image resizing before upload",
"main": "dist/index.js",
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts'",
"commit": "git-cz",
"precommit": "npm run lint",
"test": "NODE_ENV=test karma start --single-run",
"coverage": "NODE_ENV=coverage karma start --single-run",
"postcoverage": "cat ./coverage/lcov.info | codecov",
"build": "tsc --sourcemap",
"postbuild": "npm run test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/danii-nebot/yet-another-resizer.git"
},
"dependencies": {
"bluebird": "^3.5.0"
},
"devDependencies": {
"browser-sync": "^2.15.0",
"browserify": "^13.1.0",
"codecov": "^2.2.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"jasmine-core": "2.4.1",
"karma": "^1.7.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.0.2",
"karma-spec-reporter": "0.0.31",
"karma-typescript": "^3.0.4",
"requirejs": "^2.2.0",
"semantic-release": "^6.3.6",
"systemjs": "^0.19.37",
"tslint": "^5.4.3",
"tslint-config-prettier": "^1.1.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.3.2",
"watchify": "^3.7.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}