forked from withspectrum/slate-mentions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "slate-mentions",
"version": "0.0.5",
"description": "Add mentions like Facebook to your Slate editor.",
"repository": {
"type": "git",
"url": "https://github.com/withspectrum/slate-mentions.git"
},
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"prebuild": "rimraf dist",
"build": "NODE_ENV=production babel src --out-dir dist --ignore '*.test.js'",
"test": "jest src",
"prettier": "prettier --write --single-quote --trailing-comma es5 'src/**/*.js'",
"flow": "flow src"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --trailing-comma es5",
"git add"
]
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-preset-env": "^1.4.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-app": "^2.2.0",
"flow-bin": "^0.45.0",
"husky": "^0.13.3",
"jest": "19.x.x",
"lint-staged": "^3.4.1",
"prettier": "^1.3.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"positions": "^1.6.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-portal": "^3.1.0",
"slate": "^0.19.29"
},
"keywords": [
"slate"
]
}