forked from joolfe/postman-util-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "script-utils",
"version": "1.3.0",
"description": "Postman security utils",
"main": "lib.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text npm run test:lint",
"test:lint": "standard 'src/*.js' && npm run test:unit",
"test:unit": "mocha test/lib-test.js",
"test:e2e": "node e2e-test/e2e.js",
"build": "browserify -p tinyify src/lib.js > docs/dist/bundle.js -s pmlib",
"dev": "npm run build && node index.js",
"changelog:all": "conventional-changelog --config ./changelog.config.js -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog --config ./changelog.config.js -i CHANGELOG.md -s"
},
"author": "",
"license": "MIT",
"dependencies": {
"conventional-changelog-cli": "^2.1.1",
"jsrsasign": "^10.2.0",
"nanoid": "^3.1.23"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"browserify": "^17.0.0",
"husky": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.5",
"mocha": "^8.4.0",
"newman": "^5.2.3",
"nyc": "^15.1.0",
"sinon": "^10.0.0",
"standard": "^16.0.3",
"supertest": "^6.1.3",
"tinyify": "^3.0.0"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js",
"test/**/*.js"
],
"exclude": [],
"reporter": [
"html",
"text"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm test"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}