forked from synocate/draft-js-autosave-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "draft-js-autosave-plugin",
"version": "0.1.0",
"description": "Autosave Plugin for DraftJS Plugins Editor",
"main": "lib/index.js",
"author": {
"name": "Conner Jevning",
"url": "https://github.com/cjevning"
},
"bugs": {
"url": "https://github.com/synocate/draft-js-autosave-plugin/issues"
},
"homepage": "https://github.com/synocate/draft-js-autosave-plugin",
"repository": {
"type": "git",
"url": "https://github.com/synocate/draft-js-autosave-plugin.git"
},
"keywords": [
"autosave",
"draft-js",
"draft-js-plugins",
"plugins",
"plugin",
"save"
],
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && npm run build:js && npm run build:css",
"build:js": "BABEL_DISABLE_CACHE=1 BABEL_ENV=production NODE_ENV=production babel --out-dir='lib' src",
"build:css": "node ./scripts/concatCssFiles $(pwd) && ./node_modules/.bin/rimraf lib-css",
"lint": "eslint -c .eslintrc src test",
"prepublish": "npm run build",
"test": "NODE_ENV=test nyc --check-coverage --statements 100 --branches 100 ava"
},
"ava": {
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
},
"require": [
"babel-core/register",
"ignore-styles",
"./test/fixtures/setup-browser-env.js"
],
"files": [
"**/*.test.js"
]
},
"nyc": {
"reporter": [
"html",
"text-summary"
]
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"decorate-component-with-props": "^1.0.2",
"prop-types": "^15.5.10"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"ava": "^0.18.2",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"browser-env": "^2.0.26",
"css-loader": "^0.27.2",
"draft-js": "~0.10.0",
"enzyme": "^2.8.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-react": "^6.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"ignore-styles": "^5.0.1",
"nyc": "^10.1.2",
"postcss-loader": "^1.3.3",
"pre-commit": "^1.2.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"style-loader": "^0.13.2",
"webpack": "^2.2.1"
},
"peerDependencies": {
"draft-js-plugins-editor": "2.0.0-beta10",
"react": "^15.0.0"
}
}