forked from jpuri/draftjs-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
49
50
51
52
53
54
{
"name": "draftjs-utils",
"version": "0.9.3",
"description": "Collection of utility function for use with Draftjs.",
"main": "lib/draftjs-utils.js",
"peerDependencies": {
"draft-js": "^0.10.x",
"immutable": "3.x.x || 4.x.x"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"draft-js": "^0.10.4",
"immutable": "^3.8.2",
"enzyme": "^3.2.0",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.60.1",
"jsdom": "^11.5.1",
"mocha": "^4.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"sinon": "^4.1.2",
"webpack": "^3.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jpuri/draftjs-utils.git"
},
"scripts": {
"clean": "rimraf lib",
"build:webpack":
"NODE_ENV=production webpack --config config/webpack.prod.config.js",
"build": "npm run clean && npm run build:webpack",
"test":
"mocha --compilers js:config/test-compiler.js config/test-setup.js js/**/*Test.js",
"lint": "eslint js",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"check": "npm run lint && npm run flow"
},
"author": "Jyoti Puri",
"license": "MIT"
}