-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.78 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@hdsydsvenskan/ts-ignore-import",
"version": "2.0.0",
"license": "MIT",
"description": "Ignores unwanted dependencies in TypeScript definitions. Useful for autogenerated declarations",
"homepage": "https://github.com/Sydsvenskan/node-ts-ignore-import",
"repository": {
"type": "git",
"url": "git://github.com/Sydsvenskan/node-ts-ignore-import"
},
"engines": {
"node": ">=12.0.0"
},
"bin": {
"ts-ignore-import": "cli.js"
},
"main": "index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "restricted"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build:2-add-ignores": "./cli.js '**/*.d.ts'",
"build": "run-s build:*",
"check:dependency-check": "dependency-check *.js 'test/**/*.js' --no-dev -i @types/*",
"check:installed-check": "installed-check -i eslint",
"check:eslint": "eslint --ext .js --ext .jsx . ",
"check:typescript": "tsc",
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts')",
"clean": "run-p clean:*",
"prepublishOnly": "run-s build",
"test:mocha": "NODE_ENV=test nyc --reporter=lcov --reporter text mocha test/**/*.spec.js",
"test-checkless": "run-s test:*",
"test": "run-s clean check test:*"
},
"devDependencies": {
"@hdsydsvenskan/eslint-config-hds": "^20.0.1",
"@hdsydsvenskan/eslint-config-hds-core": "^2.0.1",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.3",
"@types/meow": "^5.0.0",
"@types/mocha": "^8.0.0",
"@types/node": "^12.12.44",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"@types/verror": "^1.10.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dependency-check": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-es": "^3.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^24.0.2",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^19.0.1",
"husky": "^4.2.5",
"installed-check": "^3.0.0",
"mocha": "^8.0.1",
"nock": "^13.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"proxyquire": "^2.1.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.2.0",
"typescript": "^3.9.6"
},
"dependencies": {
"chalk": "^4.1.0",
"cosmiconfig": "^6.0.0",
"globby": "^11.0.1",
"ignore": "^5.1.8",
"meow": "^7.0.1",
"pkg-dir": "^4.2.0",
"ts-morph": "^7.1.1",
"verror": "^1.10.0"
}
}