-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.5 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.5 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
72
73
74
75
76
77
78
{
"name": "@coriolis/coriolis",
"version": "1.0.0-alpha5",
"description": "Event sourced effect management",
"license": "GPL-3.0",
"author": "Nicolas Deveaud",
"repository": "github:coriolisjs/coriolis",
"bugs": "https://github.com/coriolisjs/coriolis/issues",
"keywords": [
"coriolis",
"event",
"eventsourcing",
"effect",
"aggregate",
"projection",
"reducer",
"predictable",
"functional",
"immutable",
"hot",
"live",
"replay",
"store"
],
"main": "dist/cjs/index.js",
"sideEffects": false,
"module": "dist/esm/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"clear:all": "npm run clear && rm -rf node_modules",
"clear": "rm -rf dist .nyc_output coverage",
"lint": "eslint .",
"pretty": "prettier './**/{*.{js?(on),md},.*.{js?(on),md}}' --write && eslint . --fix",
"test": "mocha -r @babel/register -r src/test/init 'src/test/**/*.spec.js'",
"test:watch": "npm run -s test -- --watch",
"test:cover": "nyc --reporter=html npm test",
"build": "rollup -c",
"build:readme": "cli/build-readme",
"autobuild": "rollup -c -w",
"upgrade": "npm outdated --parseable --depth=0 | cut -d: -f4 | xargs npm install",
"prepublishOnly": "npm run lint && npm run test && npm outdated && npm run clear && npm run build && npm run build:readme && git tag ${VERSION} && git push origin ${VERSION}",
"publish:local": "VERSION=${npm_package_version}-local npm publish --registry http://localhost:4873",
"publish:npm": "VERSION=${npm_package_version} npm publish --registry https://registry.npmjs.org --access public"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rollup": "^2.21.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-visualizer": "^4.0.4",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"dependencies": {
"rxjs": "^6.6.0"
}
}