-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
46
{
"name": "optional-typed",
"version": "1.0.3",
"description": "Optional type written in Typescript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/henning96/optional-typed.git",
"scripts": {
"prepublish": "rm -rf dist && tsc",
"test": "NODE_ENV=test mocha --recursive --compilers ts:ts-node/register --bail lib/*.spec.ts",
"cover": "NODE_ENV=test nyc npm t",
"docs": "rm -rf docs && typedoc --out docs --name Optional --readme README.md index.ts"
},
"author": "Henning Gerrits",
"license": "MIT",
"devDependencies": {
"@types/expect.js": "0.3.29",
"@types/mocha": "2.2.41",
"expect.js": "0.3.1",
"mocha": "3.4.2",
"nyc": "11.0.2",
"ts-node": "3.0.6",
"typedoc": "0.7.1",
"typescript": "2.3.4"
},
"nyc": {
"exclude": [
"lib/*.spec.ts"
],
"include": [
"lib/optional.ts",
"lib/common.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
],
"all": false
}
}