-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.44 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@funkia/go-notation",
"version": "0.0.4",
"description": "Type-safe do-notation",
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build-es6; npm run build-cmjs",
"build-es6": "tsc -P ./tsconfig-release.json --outDir 'dist/es' --target es2015 --module es2015",
"build-cmjs": "tsc -P ./tsconfig-release.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean; npm run build",
"release": "np",
"test": "cross-env TS_NODE_COMPILER=\"ttypescript\" nyc mocha --recursive test/**/*.ts",
"codecov": "codecov -f coverage/coverage-final.json"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"monad",
"do-notation",
"funkia"
],
"author": "Funkia",
"license": "MIT",
"dependencies": {
"typescript": "^3.3.1"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.21",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"np": "^4.0.2",
"nyc": "^13.1.0",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.2",
"ttypescript": "^1.5.6"
},
"prettier": {},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"include": [
"src/"
],
"exclude": [
"src/index.ts"
],
"reporter": [
"json",
"html",
"text"
]
}
}