-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "ot-json1-immutable",
"description": "Add Immutable.js support to ot-json1",
"version": "1.3.2",
"main": "lib/index.js",
"author": "Charley DAVID <hello@calyh.re>",
"license": "MIT",
"repository": "git://github.com/calyhre/ot-json1-immutable.git",
"scripts": {
"prebuild": "rm -rf ./lib || true",
"build": "babel src/ --out-dir lib/ --ignore src/**/__tests__ --verbose",
"prepublish": "yarn lint && yarn test && yarn build",
"lint": "eslint src/",
"test": "jest",
"start": "yarn build --watch"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.1",
"eslint": "^5.16.0",
"immutable": "^4.0.0-rc.12",
"jest": "^26.6.3",
"ot-json1": "1.0.1",
"prettier": "^1.19.1",
"rich-text": "^3.1.0"
},
"peerDependencies": {
"immutable": ">= 3.0",
"ot-json1": ">= 1.0"
},
"jest": {
"roots": [
"./src"
],
"testRegex": "/__tests__/.*\\.spec\\.js$"
}
}