forked from htmlburger/carbon-fields
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 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
{
"name": "carbon-fields",
"version": "2.0.4",
"description": "WordPress developer-friendly custom fields for post types, taxonomy terms, users, comments, widgets, options, navigation menus and more.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"bundler": "webpack --hide-modules --progress",
"js:vendor": "npm run bundler -- --config webpack.vendor.js",
"js:core": "npm run bundler -- --config webpack.core.js",
"js:boot": "npm run bundler -- --config webpack.boot.js",
"js": "run-s js:vendor js:core js:boot",
"js:dev": "run-s js:vendor \"js:core -- -w\"",
"css": "postcss ./assets/css/main.css -o ./assets/dist/carbon.css",
"css:dev": "npm run css -- -w",
"dev": "cross-env NODE_ENV=development run-p -l -s css:dev js:dev",
"build": "run-s -l -s css js && cross-env NODE_ENV=production run-s -l -s css js",
"test": "jest --config .jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlburger/carbon-fields.git"
},
"keywords": [
"custom",
"fields"
],
"author": "htmlburger",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/htmlburger/carbon-fields/issues"
},
"homepage": "https://github.com/htmlburger/carbon-fields#readme",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.0",
"cssnano": "^3.10.0",
"enzyme": "^2.8.2",
"execa": "^0.6.3",
"jest": "^19.0.2",
"jquery": "1.12",
"npm-run-all": "^4.0.2",
"on-build-webpack": "^0.1.0",
"postcss-cli": "^3.1.1",
"postcss-import": "^9.1.0",
"postcss-simple-vars": "^3.1.0",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.3",
"redux-saga-test-plan": "^2.3.6",
"uglify-js": "^2.8.22",
"uglifyjs-webpack-plugin": "^0.4.1",
"webpack": "github:matthewmeyer/webpack#hashDependantModuleIds",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"classnames": "^2.2.5",
"locutus": "^2.0.8",
"lodash": "^4.17.4",
"object-path-immutable": "^0.5.1",
"observe-resize": "^1.1.3",
"prop-types": "^15.5.6",
"react": "^15.5.3",
"react-color": "^2.11.7",
"react-dom": "^15.5.3",
"react-flatpickr": "^3.3.0",
"react-onclickoutside": "^5.11.1",
"react-redux": "^5.0.4",
"recompose": "^0.23.1",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"redux-saga": "^0.15.3",
"reselect": "^3.0.0"
}
}