-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "protoblast",
"description": "Native object expansion library",
"version": "0.9.4",
"author": "Jelle De Loecker <[email protected]>",
"keywords": [
"prototype",
"util",
"functional",
"server",
"client",
"browser"
],
"dependencies": {
"json-dry" : "~2.0.3"
},
"repository": "11ways/protoblast",
"homepage": "https://protoblast.develry.be/",
"license": "MIT",
"scripts": {
"coverage" : "c8 --reporter=text --reporter=lcov mocha --exit --timeout 20000 --bail --file test/00-init.js",
"report-coverage" : "codecov",
"test" : "mocha --exit --reporter spec --bail --timeout 5000 --file test/00-init.js"
},
"main": "lib/init.js",
"devDependencies": {
"browserify" : "~16.5.1",
"codecov" : "~3.8.3",
"git-rev" : "0.2.1",
"istanbul-lib-instrument" : "~4.0.3",
"jsuri" : "~1.3.1",
"@c4312/matcha" : "~1.3.1",
"mocha" : "~10.2.0",
"c8" : "^9.1.0",
"promises-aplus-tests" : "~2.1.2",
"puppeteer" : "18.0.0",
"source-map" : "~0.7.3",
"uglify-js" : "3.2.0",
"wd" : "~1.12.1",
"mm" : "~3.2.1"
},
"engines": {
"node" : ">=20.13.0"
}
}