-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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": "args-matcher",
"version": "0.0.1",
"description": "Provides tools for pattern-matching function arguments.",
"main": "dist/src/index.js",
"scripts": {
"build": "npx rimraf ./dist && npx tsc -p .",
"start": "ts-node ./playground.ts",
"test": "jasmine-ts --reporter=jasmine-console-reporter --config=jasmine.json",
"test:coverage": "npx nyc -e .ts -x \"*.spec.ts\" --reporter=html jasmine-ts --reporter=jasmine-console-reporter --config=jasmine.json",
"test:watch": "nodemon --quiet --ext ts --exec 'jasmine-ts --reporter=jasmine-console-reporter --config=jasmine.json'"
},
"files": [
"dist/**/*"
],
"nyc": {
"include": "src"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^3.3.16",
"@types/lodash": "^4.14.142",
"@types/moment": "^2.13.0",
"@types/node": "^12.6.8",
"istanbul": "^0.4.5",
"jasmine": "^3.4.0",
"jasmine-console-reporter": "^3.1.0",
"jasmine-ts": "^0.3.0",
"nodemon": "^1.19.3",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"keywords": [
"pattern-matching",
"functions",
"args",
"arguments",
"argument parser",
"argument matcher"
],
"author": "jlang",
"license": "ISC"
}