-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "sourced",
"version": "0.0.0-development",
"description": "Tiny framework for building models with the event sourcing pattern (events and snapshots).",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"docs": "mocha -R doc -t 5000 > docs/docs.html",
"lint": "eslint src __tests__",
"lint:fix": "eslint --fix src __tests__",
"markdown": "mocha -R markdown -t 5000 > docs/docs.md",
"test": "jest --config jest.json --coverage --verbose",
"test:watch": "jest --config jest.json --watch --coverage --verbose",
"precommit": "npm run lint:fix && npm run test",
"prepublish": "npm run build"
},
"author": {
"name": "mattwalters5@gmail.com"
},
"contributors": [
"mattwalters5@gmail.com",
"pat@patscott.io"
],
"repository": {
"type": "git",
"url": "https://github.com/mateodelnorte/sourced.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.10.3",
"@babel/core": "7.10.3",
"@babel/plugin-proposal-object-rest-spread": "7.10.3",
"@babel/preset-env": "7.10.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"babel-plugin-module-resolver": "4.0.0",
"eslint": "7.3.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "26.0.1",
"regenerator-runtime": "0.13.5"
},
"dependencies": {
"debug": "^4.1.1",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2"
}
}