-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.75 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
{
"name": "@jimmycode/draft-js-autosave-plugin",
"version": "0.5.2",
"description": "Autosave changes of your draft-js editor",
"keywords": [
"draft-js",
"draft-js-plugins",
"autosave",
"draft-plugin",
"editor-plugin",
"editor"
],
"author": "JimmyCode Social <hi@jimmycode.com>",
"contributors": [
{
"name": "Alberto Menendez Romero",
"url": "https://www.linkedin.com/in/albertomr86/"
}
],
"homepage": "https://github.com/jimmycodesocial/draft-js-autosave-plugin",
"bugs": {
"url": "https://github.com/jimmycodesocial/draft-js-autosave-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimmycodesocial/draft-js-autosave-plugin.git"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"clean": "node_modules/.bin/rimraf lib",
"build": "npm run clean && npm run build:js",
"build:js": "BABEL_DISABLE_CACHE=1 BABEL_ENV=production webpack --config ./webpack.config.js --mode production",
"lint": "eslint -c .eslintrc src test",
"prepublish": "npm run build",
"test": "NODE_ENV=test nyc --check-coverage --statements 100 ava && NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
},
"require": [
"babel-core/register",
"./test/fixtures/setup-browser-env.js"
],
"files": [
"**/*.test.js"
]
},
"nyc": {
"reporter": [
"html",
"text-summary"
]
},
"pre-commit": [
"lint",
"test"
],
"peerDependencies": {
"draft-js": "^0.10.1",
"draft-js-plugins-editor": "^2.0.1",
"react": "^15.5.0 || ^16.0.0",
"react-dom": "^15.5.0 || ^16.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-source-map-support": "^2.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"browser-env": "^3.2.5",
"coveralls": "^3.0.2",
"draft-js": "^0.10.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.10.0",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rimraf": "^2.6.2",
"sinon": "^6.1.3",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
}
}