-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 918 Bytes
/
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
{
"name": "params-equal",
"version": "1.1.0",
"description": "Checks if two elements are really equal",
"main": "src/paramsEqual.js",
"scripts": {
"benchmark": "ts-node benchmark.ts",
"clean": "rimraf \"+(test|src)/**/*+(.d.ts|.js|.map)\" .nyc_output coverage",
"prebuild": "npm run clean && tslint -p tsconfig.json",
"build": "tsc -p .",
"test": "npm run build && nyc --include src/**/*.js --reporter=html --report-dir=coverage --check-coverage mocha \" src/**/*.spec.js\""
},
"devDependencies": {
"@types/benchmark": "2.1.1",
"@types/chai": "4.3.0",
"@types/mocha": "9.1.0",
"@types/node": "14.0.27",
"benchmark": "2.1.4",
"chai": "4.3.6",
"mocha": "9.2.1",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"tslint": "6.1.3",
"typescript": "4.5.5"
},
"dependencies": {
"param-type": "^1.1.1"
},
"author": "kmdrGroch",
"license": "MIT"
}