-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 KB
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
{
"name": "@funkia/rudolph",
"version": "0.1.0",
"description": "A purely functional router based on Hareactive",
"main": "dist/router.js",
"module": "dist/es2015/router.js",
"typings": "dist/defs/router.d.ts",
"directories": {
"dist": "dist"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"codecov": "codecov -f coverage/**/json",
"build": "npm run build-cmjs; npm run build-es2015",
"build-es2015": "tsc -P ./tsconfig-release.json --outDir 'dist/es2015' --module es6 --moduleResolution node",
"build-cmjs": "tsc -P ./tsconfig-release.json",
"clean": "rm -rf coverage dist",
"format": "prettier --write \"{src,test,examples}/**/*.ts\"",
"formatcheck": "prettier --check {src,test,examples}/**/*",
"prepublishOnly": "npm run clean; npm run build",
"release": "np"
},
"author": "Funkia",
"license": "MIT",
"homepage": "https://github.com/funkia/rudolph#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/funkia/rudolph.git"
},
"bugs": {
"url": "https://github.com/funkia/rudolph/issues"
},
"keywords": [
"pure",
"functional",
"router",
"frp",
"functional reactive programming",
"typescript"
],
"dependencies": {
"@funkia/io": "0.0.5"
},
"peerDependencies": {
"@funkia/hareactive": "0.3.2"
},
"devDependencies": {
"@funkia/hareactive": "^0.4.0",
"@types/chai": "^4.2.14",
"@types/jest": "^26.0.20",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"chai": "^4.2.0",
"codecov": "^3.8.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"np": "^7.2.0",
"prettier": "^2.2.1",
"sinon": "^9.2.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"prettier": {
"arrowParens": "always"
}
}