forked from Automattic/jetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.67 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
106
107
108
109
110
111
112
113
{
"name": "Jetpack",
"version": "4.4.0-alpha",
"description": "[Jetpack](http://jetpack.com/) is a WordPress plugin that supercharges your self-hosted WordPress site with the awesome cloud power of [WordPress.com](https://wordpress.com).",
"homepage": "http://jetpack.com",
"author": "Automattic",
"license": "GPL-2.0+",
"repository": {
"type": "git",
"url": "https://github.com/Automattic/jetpack.git"
},
"bugs": {
"url": "https://github.com/Automattic/jetpack/issues"
},
"scripts": {
"watch": "gulp watch",
"clean": "rm -rf _inc/build/*.js _inc/build/*.css _inc/build/*.map _inc/build/*.html",
"distclean": "rm -rf node_modules",
"build": "npm install && npm run build-client",
"build-client": "gulp",
"build-production": "npm run clean && npm run build && npm run build-languages && gulp languages:extract && NODE_ENV=production npm run build",
"build-languages": "gulp languages",
"test-client": "NODE_ENV=test NODE_PATH=tests:_inc/client:node_modules/@automattic/dops-components/client tests/runner.js",
"lint": "eslint _inc/client -c .eslintrc"
},
"dependencies": {
"del": "^2.2.0",
"@automattic/custom-colors-loader": "automattic/custom-colors-loader",
"@automattic/dops-components": "automattic/dops-components",
"babel-core": "6.8.0",
"babel-eslint": "4.1.7",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-runtime": "^6.6.1",
"classnames": "2.2.1",
"css-loader": "0.23.1",
"es6-promise": "3.0.2",
"eslint": "1.7.3",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "3.6.3",
"extract-text-webpack-plugin": "0.9.1",
"glotpress-js": "0.0.6",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.2",
"gulp-babel": "^5.2.1",
"gulp-banner": "^0.1.3",
"gulp-browserstack": "^1.0.0",
"gulp-check": "^0.1.1",
"gulp-clean-css": "^2.0.2",
"gulp-concat": "^2.6.0",
"gulp-download-stream": "0.0.13",
"gulp-jshint": "2.0.0",
"gulp-json-transform": "^0.4.2",
"gulp-live-server": "0.0.28",
"gulp-modify": "0.1.1",
"gulp-open": "^1.0.0",
"gulp-phplint": "^0.0.6",
"gulp-phpunit": "^0.14.0",
"gulp-po2json": "^0.4.0",
"gulp-qunit": "^1.3.1",
"gulp-rename": "^1.2.2",
"gulp-rtlcss": "^1.0.0",
"gulp-sass": "^2.0.4",
"gulp-sftp": "^0.1.5",
"gulp-sourcemaps": "~2.0.0",
"gulp-tap": "^0.1.3",
"gulp-util": "^3.0.6",
"history": "2.0.0",
"jsdom": "^9.2.1",
"i18n-calypso": "github:automattic/i18n-calypso",
"jshint": "2.9.1",
"jshint-stylish": "~2.1.0",
"lodash": "^4.9.0",
"node-sass": "^3.7.0",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "0.14.3",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.1",
"react-tagsinput": "^3.13.1",
"react-tap-event-plugin": "0.2.1",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1",
"sass-loader": "3.1.2",
"style-loader": "0.13",
"webpack": "1.12.9",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"commander": "2.3.0",
"gulp-uglify": "^2.0.0",
"mocha": "^2.4.5",
"mockery": "^1.4.1",
"nock": "^7.2.2",
"qunitjs": "~1.20.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"sinon-qunit": "~2.0.0",
"webpack-dev-server": "1.14.0"
},
"engines": {
"node": ">=0.8"
}
}