-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
87 lines (87 loc) · 2.71 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
{
"name": "micropub-express",
"version": "0.9.1",
"license": "MIT",
"description": "Provides a Micropub route for Express 4.x",
"author": "Pelle Wessman <[email protected]> (http://kodfabrik.se/)",
"homepage": "https://github.com/voxpelli/node-micropub-express",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-micropub-express.git"
},
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build:2-add-ignores": "ts-ignore-import '**/*.d.ts'",
"build": "run-s build:*",
"check:dependency-check": "dependency-check *.js 'test/**/*.js' --no-dev -i @types/express -i @types/multer",
"check:installed-check": "installed-check -i eslint",
"check:lint": "eslint .",
"check:tsc": "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": "nyc --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
"test": "run-s clean check test:*"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"devDependencies": {
"@hdsydsvenskan/ts-ignore-import": "^2.0.0",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/express": "^4.17.9",
"@types/mocha": "^8.2.0",
"@types/multer": "^1.4.5",
"@types/node": "^10.17.48",
"@types/node-fetch": "^1.6.9",
"@types/sinon": "^9.0.9",
"@types/sinon-chai": "^3.2.5",
"@types/supertest": "^2.0.10",
"@types/verror": "^1.10.4",
"@voxpelli/eslint-config": "^5.0.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"dependency-check": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-es": "^3.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-unicorn": "^19.0.1",
"husky": "^4.3.5",
"installed-check": "^3.0.0",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"supertest": "6.0.1",
"type-fest": "^0.20.2",
"typescript": "^4.1.2"
},
"dependencies": {
"body-parser": "^1.13.1",
"bunyan-adaptor": "^4.0.1",
"express": "^4.13.0",
"multer": "^1.0.1",
"node-fetch": "^1.3.0",
"verror": "^1.8.1"
}
}