-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.29 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
{
"name": "wagtail-readinglevel",
"version": "3.4.0",
"description": "Wagtail plugin that adds reading level calculations to Draftail.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-automated" : "webpack",
"build-smog" : "webpack --config webpack.smog.config.js",
"build-coleman" : "webpack --config webpack.coleman.config.js",
"build-flesch" : "webpack --config webpack.flesch.config.js",
"build": "npm run build-automated && npm run build-smog && npm run build-coleman && npm run build-flesch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vixdigital/wagtail-readinglevel.git"
},
"author": "VIX Digital",
"license": "MIT",
"bugs": {
"url": "https://github.com/vixdigital/wagtail-readinglevel/issues"
},
"homepage": "https://github.com/vixdigital/wagtail-readinglevel#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.41",
"@babel/preset-react": "^7.0.0-beta.41",
"@babel/preset-env": "^7.0.0-beta.41",
"babel-core": "^7.0.0-beta.41",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"dependencies": {
"draftail": "^0.17.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"syllable": "^3.0.0"
}
}