-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.12 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
78
79
{
"name": "@funkia/jabz",
"version": "0.0.24",
"description": "Powerful and practical abstractions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/es/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -P ./tsconfig-release.json; tsc -P ./tsconfig-release.json --outDir 'dist/es' --target es6 --module es6",
"test": "nyc mocha --recursive test/**/*.ts",
"test-watch": "mocha --watch --require ts-node/register --watch-extensions ts test/**/*.ts",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"release-major": "xyz --repo [email protected]:funkia/jabz.git --increment major",
"release-minor": "xyz --repo [email protected]:funkia/jabz.git --increment minor",
"release-patch": "xyz --repo [email protected]:funkia/jabz.git --increment patch",
"format": "prettier --write \"**/*.{json,ts}\"",
"build-docs": "node metalsmith.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/funkia/jabz.git"
},
"keywords": [
"monad"
],
"author": "Funkia",
"license": "MIT",
"bugs": {
"url": "https://github.com/funkia/jabz/issues"
},
"homepage": "https://github.com/funkia/jabz#readme",
"dependencies": {
"tslib": "^1.9.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"js-yaml": "^3.11.0",
"jstransformer-markdown-it": "^2.1.0",
"marked": "^0.4.0",
"metalsmith": "^2.3.0",
"metalsmith-prism": "^3.1.1",
"metalsmith-pug": "^2.0.0",
"metalsmith-sass": "^1.5.1",
"metalsmith-watch": "^1.0.3",
"mocha": "^5.2.0",
"normalize.css": "^8.0.0",
"nyc": "^11.8.0",
"prettier": "^1.13.3",
"ts-node": "^6.0.5",
"typescript": "^2.8.4",
"xyz": "3.0.0"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"json",
"html",
"text"
]
},
"directories": {
"doc": "docs",
"test": "test"
},
"files": [
"dist"
],
"sideEffects": false
}