forked from sstur/draft-js-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "draft-js-utils",
"scripts": {
"build": "lerna run build",
"format": "prettier-eslint --write \"packages/*/src/**/*.js\"",
"lint": "eslint --max-warnings 0 .",
"typecheck": "flow",
"test": "yarn lint && yarn typecheck && yarn test-src",
"test-src": "jest"
},
"dependencies": {
"draft-js": "^0.10.1",
"immutable": "3.x.x"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^4.6.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-react": "^7.3.0",
"expect": "^1.20.1",
"flow-bin": "0.42.0",
"jest": "^20.0.4",
"lerna": "^2.1.2",
"prettier-eslint-cli": "^4.3.0",
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"jest": {
"moduleNameMapper": {
"draft-js-import-element": "<rootDir>/packages/draft-js-import-element/src/main.js",
"draft-js-utils": "<rootDir>/packages/draft-js-utils/src/main.js",
"synthetic-dom": "<rootDir>/packages/synthetic-dom/src/main.js"
}
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
}
}