-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "slate-instant-replace",
"version": "0.1.17",
"description": "A Slate plugin that gives you full power on the last word your user typed.",
"repository": "git://github.com/enzoferey/slate-instant-replace.git",
"main": "./dist/slate-instant-replace.js",
"files": [
"dist",
"*.md"
],
"author": "Enzo Ferey",
"license": "MIT",
"keywords": [
"slate",
"autocomplete",
"replace",
"editor",
"last",
"word"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"prepublishOnly": "npm run prettier && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier --config \"./.prettierrc.js\" --write \"**/*.@(js|scss)\"",
"prettier:check": "prettier --check \"./.prettierrc.js\" --write \"**/*.@(js|scss)\""
},
"dependencies": {},
"peerDependencies": {
"slate": "^0.44.6"
},
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"babel-jest": "^24.9.0",
"immutable": "^3.8.2",
"jest": "^24.9.0",
"prettier": "1.18.2",
"slate": "^0.44.6",
"slate-plain-serializer": "^0.6.30",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
}
}