-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.11 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
{
"name" : "alchemy-shortlink",
"description" : "A shortlink plugin for AlchemyMVC projects",
"author" : "Jelle De Loecker <[email protected]>",
"version" : "0.2.5",
"repository" : "11ways/alchemy-shortlink",
"license" : "MIT",
"keywords" : ["skeleton", "boilerplate", "alchemymvc"],
"contributors" : [],
"dependencies" : {
"qr-code-styling" : "1.6.0-rc.1"
},
"devDependencies" : {
"alchemymvc" : ">=1.3.2",
"codecov" : "~3.7.2",
"mocha" : "~8.0.1",
"mongo-unit" : "~2.0.1",
"nyc" : "^15.1.0"
},
"peerDependencies": {
"alchemymvc" : ">=1.3.2"
},
"scripts": {
"test" : "node_modules/.bin/mocha --exit --reporter spec --bail --timeout 5000 --file test/00-init.js",
"appveyor" : "node_modules/.bin/mocha --exit --reporter spec --bail --timeout 20000 --file test/00-init.js",
"coverage" : "node_modules/.bin/nyc --reporter=text --reporter=lcov mocha --exit --timeout 20000 --bail --file test/00-init.js",
"report-coverage" : "cat ./coverage/lcov.info | codecov"
},
"engines": {
"node": ">=14.0"
}
}