-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
89 lines (89 loc) · 2.4 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
{
"name": "colonel-kurtz",
"version": "5.2.1",
"private": true,
"description": "A block editor",
"main": "src/Colonel.js",
"scripts": {
"start": "webpack-dev-server --config example/webpack.config.js --mode development",
"example": "webpack --config example/webpack.config.js --mode production",
"release": "make release",
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint . --cache --cache-location=node_modules/ --ignore-path=.gitignore",
"format": "prettier --write './{src,example,addons,docs}/**/*.{js,md}' ./*.{js,md}"
},
"repository": {
"type": "git",
"url": "git://github.com/vigetlabs/colonel-kurtz.git"
},
"keywords": [
"block",
"editor"
],
"contributors": [
{
"name": "Lawson Kurtz",
"email": "[email protected]",
"url": "http://viget.com"
},
{
"name": "Nate Hunzaker",
"email": "[email protected]",
"url": "http://viget.com"
},
{
"name": "Chris Manning",
"email": "[email protected]",
"url": "http://viget.com"
},
{
"name": "David Eisinger",
"email": "[email protected]",
"url": "http://viget.com"
}
],
"license": "MIT",
"bugs": "https://github.com/vigetlabs/colonel-kurtz/issues",
"homepage": "https://github.com/vigetlabs/colonel-kurtz",
"devDependencies": {
"autoprefixer": "~8.2.0",
"babel-core": "~6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "~7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^3.0.0",
"css-loader": "~0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"node-sass": "~4.8.3",
"postcss-loader": "^2.1.3",
"prettier": "^1.11.1",
"react": "~16.3.1",
"react-dom": "~16.3.1",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"sass-loader": "~6.0.7",
"style-loader": "~0.20.3",
"webpack": "4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "~3.1.11"
},
"dependencies": {
"classnames": "~2",
"group-by": "0.0.1",
"microcosm": "~9.21",
"react-focus-trap": "~2.5.0",
"react-ink": "~6.3.0",
"react-transition-group": "1.2.0"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}