-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 885 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 885 Bytes
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
{
"name": "param-type",
"version": "1.1.1",
"description": "Get the type of every parameter",
"main": "src/paramType.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/paramType.js --reporter=html --report-dir=coverage --check-coverage mocha src/paramType.spec.js"
},
"devDependencies": {
"@types/benchmark": "1.0.33",
"@types/chai": "4.2.12",
"@types/mocha": "8.0.1",
"@types/node": "14.0.27",
"benchmark": "2.1.4",
"chai": "4.2.0",
"mocha": "8.1.1",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"tslint": "6.1.3",
"typescript": "3.9.7"
},
"author": "kmdrGroch <bartosz.leoniak@wp.pl>",
"license": "MIT"
}