forked from mozilla/testpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.48 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
114
115
116
{
"name": "testpilot",
"description": "A place where ideas come to idea",
"version": "1.0.0",
"author": "Mozilla (https://mozilla.org/)",
"bugs": {
"url": "https://github.com/mozilla/testpilot/issues"
},
"engines": {
"node": ">=4.4.0"
},
"dependencies": {
"babel-polyfill": "^6.13.0",
"classnames": "^2.2.5",
"clipboard": "^1.5.12",
"domready": "^1.0.8",
"es-symbol": "^1.1.2",
"es6-promise": "^3.0.2",
"history": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "2.1.1",
"l20n": "4.0.0-alpha.3",
"micro-email-validator": "0.0.1",
"moment": "^2.15.1",
"mustache": "^2.1.3",
"raven-js": "^3.7.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-actions": "^0.12.0",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.4"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-istanbul": "^2.0.3",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"babelify": "^7.3.0",
"browserify": "^11.0.1",
"chai": "^3.5.0",
"del": "2.0.2",
"doctoc": "1.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-react": "^1.1.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"fetch-mock": "^5.5.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-cache": "^0.2.10",
"gulp-connect": "^2.2.0",
"gulp-cssnano": "2.1.0",
"gulp-eslint": "^3.0.1",
"gulp-if": "^1.2.5",
"gulp-multi-dest": "0.0.4",
"gulp-rename": "^1.2.2",
"gulp-rev-all": "^0.8.24",
"gulp-sass": "^2.0.4",
"gulp-sass-lint": "^1.1.0",
"gulp-sourcemaps": "~1.8.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jsdom": "^9.6.0",
"merge-stream": "^1.0.0",
"mocha": "^3.0.2",
"mocha-junit-reporter": "^1.12.1",
"node-normalize-scss": "1.1.1",
"node-sass": "^3.9.3",
"nyc": "^8.3.2",
"react-addons-test-utils": "^15.3.1",
"remarkable": "1.6.2",
"require-globify": "^1.3.0",
"run-sequence": "^1.1.2",
"sass-lint": "1.5.1",
"sinon": "^1.17.6",
"through2": "2.0.1",
"try-require": "1.2.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"yamljs": "^0.2.8"
},
"directories": {
"doc": "docs"
},
"homepage": "https://github.com/mozilla/testpilot#readme",
"license": "MPL-2.0",
"private": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/testpilot.git"
},
"scripts": {
"start": "NODE_ENV=development ENABLE_DEV_LOCALES=1 ENABLE_DEV_CONTENT=1 gulp",
"server": "gulp server",
"static": "gulp dist-build",
"docs": "doctoc README.md && doctoc addon/README.md",
"lint": "gulp scripts-lint styles-lint",
"test": "cd frontend && mocha --require babel-register --require test-setup.js --recursive",
"test:ci": "NODE_ENV=test nyc mocha --recursive --reporter mocha-junit-reporter --require frontend/test-setup.js frontend/test",
"test:watch": "npm test -- --watch",
"coverage": "NODE_ENV=test nyc mocha --recursive --require frontend/test-setup.js frontend/test",
"addon:locales": "gulp addon-copy-locales"
}
}