-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
77 lines (77 loc) · 1.87 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/turbine",
"version": "0.4.0",
"description": "A functional frontend framework in Typescript",
"main": "dist/cmjs/index.js",
"module": "dist/es6/index.js",
"typings": "dist/defs/index.d.ts",
"directories": {
"dist": "dist"
},
"files": [
"dist"
],
"scripts": {
"test": "jest --coverage",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"codecov": "codecov -f coverage/**/json",
"build-es6": "tsc -P tsconfig-build.json --module ES6 --outDir dist/es6 --declaration true --declarationDir ./dist/defs",
"build-cmjs": "tsc -P tsconfig-build.json",
"build": "npm run build-es6; npm run build-cmjs",
"clean": "rm -rf coverage dist",
"prepublishOnly": "npm run clean; npm run build",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/funkia/turbine.git"
},
"keywords": [
"pure",
"functional",
"framework",
"frp",
"functional reactive programming",
"typescript"
],
"license": "MIT",
"peerDependencies": {
"@funkia/hareactive": "0.4.x"
},
"dependencies": {
"@funkia/jabz": "0.0.24"
},
"bugs": {
"url": "https://github.com/funkia/turbine/issues"
},
"homepage": "https://github.com/funkia/turbine#readme",
"devDependencies": {
"@funkia/hareactive": "^0.4.0",
"@types/chai": "^4.2.16",
"@types/chai-dom": "0.0.10",
"@types/jest": "^26.0.22",
"chai": "^4.3.4",
"chai-dom": "^1.9.0",
"codecov": "^3.8.1",
"fake-raf": "^1.0.1",
"jest": "^26.6.3",
"np": "^7.4.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"tslint": "^6.1.2",
"typescript": "^4.2.4"
},
"contributors": [
{
"name": "Simon Friis Vindum"
},
{
"name": "Emil Gjørup",
"email": "[email protected]"
}
],
"prettier": {
"arrowParens": "always",
"trailingComma": "none"
}
}