-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.37 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
{
"name": "@ygunayer/patmat",
"version": "0.2.3",
"description": "An attempt at pattern matching in JavaScript",
"repository": {
"type": "git",
"url": "git@github.com:ygunayer/patmat.git"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf dist/",
"build": "npm run clean && tsc",
"test": "npm run build && nyc mocha --require ts-node/register --require source-map-support/register --recursive test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"publish": "npm test && cd dist && cp ../package*.json ./ && cp ../.npmignore ./ && npm pack && npm publish ./*.tgz",
"example:basic": "tsc && node dist/examples/basic.js",
"example:async": "tsc && node dist/examples/async.js",
"example:fizzbuzz": "tsc && node dist/examples/fizzbuzz.js",
"example:advanced": "tsc && node dist/examples/advanced.js",
"example:regex": "tsc && node dist/examples/regex.js",
"example:es5": "tsc && node src/examples/es5.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"chai": "4.2.0",
"coveralls": "3.0.7",
"mocha": "6.2.2",
"nyc": "14.1.1",
"rimraf": "3.0.0",
"source-map-support": "0.5.13",
"ts-node": "8.4.1",
"typescript": "3.6.4"
},
"dependencies": {
"@types/node": "12.11.1",
"lodash": "4.17.15"
}
}