-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.82 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@funkia/io",
"version": "0.0.5",
"description": "A library that turns impure code pure.",
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/defs/index.d.ts",
"directories": {
"test": "test",
"dist": "dist"
},
"files": [
"dist"
],
"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",
"prepare": "npm run clean; npm run build",
"clean": "rm -rf dist coverage .nyc_output",
"test": "nyc mocha --recursive test/**/*.ts",
"test-watch": "mocha -R progress --watch --compilers ts:ts-node/register test/**/*.ts",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"codecov": "codecov -f coverage/coverage-final.json",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/funkia/io.git"
},
"keywords": [
"io",
"monad",
"pure",
"funkia"
],
"author": "Funkia",
"license": "MIT",
"bugs": {
"url": "https://github.com/funkia/io/issues"
},
"homepage": "https://github.com/funkia/io#readme",
"dependencies": {
"tslib": "^1.10.0"
},
"devDependencies": {
"@funkia/jabz": "0.0.24",
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"mocha": "^6.2.0",
"np": "^5.0.3",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"json",
"html",
"text"
]
},
"prettier": {
"arrowParens": "always"
}
}