-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.86 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
{
"name": "signature-v4",
"version": "0.0.0-semantically-released",
"description": "AWS Signature Version 4",
"main": "signature-v4.bundle.js",
"jsnext:main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "nyc --exclude lib/headers.ts --include lib/**/*.ts --extension .ts --require ts-node/register mocha test/**/*.spec.ts && shx rm -rf ./coverage",
"test:watch": "mocha -w --compilers ts:ts-node/register test/**/*.spec.ts",
"build": "rimraf dist && tsc -p tsconfig-esm.json && rollup -c rollup.config.js dist/index.js > dist/signature-v4.bundle.js && cp package.json dist && ts-node tools/cleanup.ts && cp README.md dist",
"lint": "tslint -c tslint.json lib/**/*.ts test/**/*.ts",
"commit": "git-cz",
"semantic-release": "semantic-release pre && yarn build && npm publish ./dist && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/goldenbearkin/signature-v4.git"
},
"keywords": [
"AWS",
"Signature Version 4"
],
"author": "goldenbearkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/goldenbearkin/signature-v4/issues"
},
"homepage": "https://github.com/goldenbearkin/signature-v4#readme",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/crypto-js": "^3.1.33",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"chai": "^3.5.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"rimraf": "^2.6.0",
"rollup": "^0.41.4",
"semantic-release": "^6.3.2",
"shx": "^0.2.2",
"ts-node": "^2.1.0",
"tslint": "^4.4.2",
"typescript": "^2.1.6"
},
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}