-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "@mroc/patcher",
"version": "3.0.0",
"description": "Immutable state transformations with undo/redo history",
"main": "lib/index.js",
"scripts": {
"test": "jest --watch",
"build": "./node_modules/.bin/babel ./src/index.js --out-dir lib",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/MRoc/patcher.git"
},
"author": "Matthias Mayrock",
"license": "MIT",
"bugs": {
"url": "https://github.com/MRoc/patcher/issues"
},
"homepage": "https://github.com/MRoc/patcher#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.14.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^26.6.3",
"prettier": "^2.3.0"
},
"dependencies": {}
}