This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.08 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
{
"name": "reistore",
"version": "1.3.0-beta3",
"description": "Functional state manager for mutable state with relationships",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"src",
"lib",
"lib/index.d.ts"
],
"keywords": [
"react",
"typescript",
"state",
"functional",
"mutable"
],
"author": "Alexey Potsetsuev",
"license": "MIT",
"scripts": {
"publish:beta": "npm run build & npm publish -tag beta",
"publish:alpha": "npm run build & npm publish -tag alpha",
"publish:rc": "npm run build & npm publish -tag rc",
"publish:latest": "npm run build & npm publish",
"build": "tsc",
"test": "nyc mocha --opts mocha.opts",
"test:local": "mocha --opts mocha.opts",
"posttest": "nyc report --reporter=json && codecov --disable=gcov -f coverage/coverage-final.json",
"bench": "ts-node ./bench/bench.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/Wroud/reistore.git"
},
"release": {
"branch": "master"
},
"publishConfig": {
"tag": "beta"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"json"
]
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-arrays": "^1.0.2",
"@types/enzyme": "^3.1.10",
"@types/jsdom": "^11.0.4",
"@types/mocha": "^5.0.0",
"@types/node": "^10.3.4",
"@types/benchmark": "^1.0.31",
"chai": "^4.1.2",
"chai-arrays": "^2.0.0",
"codecov": "3.7.1",
"effector": "^0.18.0-beta.8",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jsdom": "^11.8.0",
"mocha": "^5.0.5",
"nyc": "^6.6.1",
"redux": "*",
"ts-node": "^5.0.1",
"tslint": "^5.10.0",
"typescript": "3.0.1",
"reselect": "3.0.1",
"benchmark": "^2.1.4",
"stmbenchmarks": "1.0.3"
}
}