-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.14 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "now-sync",
"author": "Kai Yao",
"version": "1.0.13",
"description": "A tool to help developers sync their JavaScript resources with ServiceNow.",
"keywords": [
"servicenow",
"cli",
"sync",
"service-now"
],
"homepage": "https://github.com/theconnectiv/now-sync",
"bugs": "https://github.com/theconnectiv/now-sync/issues",
"license": "MIT",
"main": "index.js",
"repository": "theconnectiv/now-sync",
"scripts": {
"lint": "eslint \"**/*.js\"",
"lint:fix": "yarn run lint --fix",
"lint:time": "TIMING=1 npm run lint",
"prettify": "prettier --ignore-path ./.eslintignore --write \"{**,!dist}/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"git:changed": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet package.json",
"git:nochangedmsg": "echo \"package.json not changed, not running yarn.\"",
"postcheckout": "npm run git:changed && yarn install || npm run git:nochangedmsg",
"postmerge": "npm run git:changed && yarn install || npm run git:nochangedmsg",
"precommit": "lint-staged"
},
"bin": {
"now": "bin/now"
},
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^4.0.0",
"chokidar": "^3.4.0",
"inquirer": "^7.1.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"mkdirp": "^1.0.4",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"ora": "^4.0.4",
"path-to-regexp": "^6.1.0",
"prettier": "^2.0.5",
"roadrunner": "^1.1.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.2.0",
"rewire": "^5.0.0",
"yarn": "^1.22.4"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"verbose": false,
"collectCoverage": true,
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"prettier --ignore-path ./.eslintignore --write",
"eslint --fix \"**/*.js\"",
"jest --passWithNoTests",
"git add"
]
}
}