-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "luffie",
"version": "0.3.0",
"description": "A state management library for React",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"cover": "istanbul cover node_modules/mocha/bin/_mocha test/*.js - - -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tegraoss/luffie.git"
},
"keywords": [
"react",
"state",
"rxjs",
"plug",
"flux"
],
"author": "Vitor Manfré",
"contributors": [
"Filipe Versehgi <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tegraoss/luffie/issues"
},
"homepage": "https://github.com/tegraoss/luffie#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"typescript": "^3.3.4000",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"babel-jest": "^24.5.0",
"jest": "^24.5.0",
"jest-dom": "^3.1.3",
"react-testing-library": "^6.1.2",
"ts-jest": "^24.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rxjs": "^6.0.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rxjs": "^6.0.0"
}
}