-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
112 lines (112 loc) · 3.64 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "webmention-hosted",
"description": "A site that receives and embeds WebMentions for other sites",
"version": "0.13.0",
"author": {
"name": "Pelle Wessman",
"email": "[email protected]",
"url": "http://kodfabrik.se/"
},
"license": "MIT",
"engines": {
"node": "^10.0.0 || ^12.0.0"
},
"dependencies": {
"@voxpelli/metadataparser": "^2.0.0",
"@voxpelli/metadataparser-mf2": "^0.4.0",
"@voxpelli/passport-dummy": "^1.0.0",
"body-parser": "^1.18.3",
"cors": "^2.5.2",
"express": "^4.16.3",
"express-session": "^1.17.0",
"faker": "^2.1.1",
"fetch-politely": "^2.0.0-3",
"knex": "^0.15.2",
"knex-migrator-extension": "^0.1.4",
"lodash.clonedeep": "^4.5.0",
"lodash.escape": "^4.0.1",
"lodash.intersection": "^4.4.0",
"lodash.isempty": "^4.4.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"lodash.union": "^4.6.0",
"lodash.uniq": "^4.5.0",
"lodash.values": "^4.3.0",
"moment": "^2.22.2",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"pg": "^7.4.3",
"pg-pubsub": "^0.5.0",
"request": "^2.86.0",
"tema": "^0.3.1",
"verror": "^1.10.0"
},
"main": "./lib/main",
"directories": {
"lib": "./lib"
},
"scripts": {
"build-dev": "node -e \"require('grunt').tasks(['build-dev']);\"",
"build": "node -e \"require('grunt').tasks(['build']);\"",
"check:dependency-check": "dependency-check *.js 'lib/**/*.js' 'migrations/**/*.js' 'test/**/*.js' --no-dev --unused -i pg -i knex-migrator-extension",
"check:installed-check": "installed-check -i eslint",
"check:lint": "eslint .",
"check:typescript": "tsc",
"check": "run-p check:*",
"install-schema": "knex-migrator-extension migrate:install",
"migrate-schema": "knex-migrator-extension migrate:latest",
"mocha-functional": "NODE_ENV=test DOTENV_FILE=test/test.env nyc --reporter=lcov --reporter text mocha --exit test/functional/**/*.spec.js",
"mocha-unit": "NODE_ENV=test DOTENV_FILE=test/test.env nyc --reporter=lcov --reporter text mocha test/unit/**/*.spec.js",
"rollback-schema": "knex-migrator-extension migrate:rollback",
"start": "node .",
"test:mocha": "NODE_ENV=test DOTENV_FILE=test/test.env nyc --reporter=lcov --reporter text mocha --exit test/**/*.spec.js",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"private": true,
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/chai-as-promised": "^7.1.2",
"@types/express": "^4.17.2",
"@types/knex": "^0.15.2",
"@types/lodash.clonedeep": "^4.5.6",
"@types/mocha": "^5.2.7",
"@types/node": "^10.0.0",
"@types/request": "^2.48.3",
"@types/sinon": "^7.5.0",
"@types/supertest": "^2.0.8",
"@types/verror": "^1.10.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.7",
"dependency-check": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-es": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^12.1.0",
"grunt": "^1.0.2",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "^1.0.2",
"husky": "^3.0.9",
"installed-check": "^3.0.0",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"typescript": "^3.7.2",
"webmention-testpinger": "^0.7.0"
}
}