-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
95 lines (95 loc) · 2.41 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@funkia/hareactive",
"version": "0.4.0",
"description": "Purely functional reactive library.",
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test",
"dist": "dist"
},
"files": [
"dist",
"dom",
"testing"
],
"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",
"prebench": "npm run build-cmjs",
"bench": "node benchmark",
"clean": "rm -rf dist coverage .nyc_output",
"test": "jest --coverage",
"lint": "eslint src/*ts test/*ts",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"cherry-pick": "cherry-pick --cjs-dir dist --esm-dir dist/es --types-dir dist",
"prepublishOnly": "npm run clean; npm run build; npm run cherry-pick",
"postpublish": "cherry-pick clean",
"codecov": "codecov -f coverage/coverage-final.json",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paldepind/hareactive.git"
},
"keywords": [
"frp",
"functional reactive programming",
"pure",
"funkia"
],
"author": "Funkia",
"license": "MIT",
"bugs": {
"url": "https://github.com/paldepind/hareactive/issues"
},
"homepage": "https://github.com/paldepind/hareactive#readme",
"dependencies": {
"@funkia/io": "0.0.5",
"tslib": "^1.10.0"
},
"devDependencies": {
"@funkia/jabz": "0.0.24",
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.2.2",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"cherry-pick": "^0.5.0",
"codecov": "^3.5.0",
"eslint": "^6.5.1",
"fake-raf": "^1.0.1",
"jest": "^24.9.0",
"np": "^5.0.3",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.4.2",
"source-map-support": "^0.5.13",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.3"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"json",
"html",
"text"
]
},
"prettier": {
"arrowParens": "always"
}
}