forked from mozilla/testpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
144 lines (144 loc) · 4.93 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "testpilot",
"description": "A place where ideas come to idea",
"version": "1.0.0",
"author": "Mozilla (https://mozilla.org/)",
"browser": {
"legal-docs": false
},
"bugs": {
"url": "https://github.com/mozilla/testpilot/issues"
},
"engines": {
"node": ">=4.4.0"
},
"dependencies": {
"classnames": "2.2.5",
"cldr-core": "31.0.1",
"clipboard": "1.6.1",
"domready": "1.0.8",
"es-symbol": "1.1.2",
"es6-promise": "4.1.0",
"fluent": "0.4.1",
"fluent-langneg": "0.1.0",
"fluent-react": "0.4.1",
"html-react-parser": "0.3.5",
"js-cookie": "2.1.4",
"micro-email-validator": "0.0.1",
"moment": "2.17.1",
"raven-js": "3.12.1",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-redux": "5.0.3",
"redux": "3.6.0",
"redux-promise": "0.5.3",
"regenerator-runtime": "0.11.0",
"reselect": "3.0.1",
"seedrandom": "2.4.2",
"legal-docs": "https://github.com/mozilla/legal-docs.git"
},
"devDependencies": {
"@storybook/addon-actions": "3.2.0",
"@storybook/addon-knobs": "3.1.5",
"@storybook/react": "3.1.5",
"babel-core": "6.24.0",
"babel-eslint": "7.1.1",
"babel-loader": "7.1.2",
"babel-plugin-istanbul": "4.0.0",
"babel-plugin-transform-flow-strip-types": "6.14.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.24.0",
"chai": "4.0.2",
"cross-env": "5.0.0",
"cross-spawn": "5.1.0",
"del": "2.2.2",
"doctoc": "1.3.0",
"empty": "0.10.1",
"enzyme": "2.7.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "10.0.1",
"eslint-config-react": "1.1.7",
"eslint-plugin-flowtype": "2.30.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.0.1",
"extract-text-webpack-plugin": "3.0.0",
"feed": "1.1.0",
"fetch-mock": "5.9.4",
"flow-bin": "0.47.0",
"flow-coverage-report": "0.3.0",
"flow-typed": "2.0.0",
"gulp": "3.9.1",
"gulp-autoprefixer": "4.0.0",
"gulp-cache": "0.4.6",
"gulp-connect": "5.0.0",
"gulp-cssnano": "2.1.2",
"gulp-eslint": "3.0.1",
"gulp-if": "2.0.2",
"gulp-multi-dest": "0.0.4",
"gulp-rename": "1.2.2",
"gulp-rev-all": "0.9.7",
"gulp-sass": "3.1.0",
"gulp-sass-lint": "1.3.2",
"gulp-sourcemaps": "2.6.0",
"gulp-uglify": "3.0.0",
"gulp-util": "3.0.8",
"jsdom": "11.0.0",
"merge-stream": "1.0.1",
"mocha": "3.2.0",
"mocha-junit-reporter": "1.13.0",
"node-normalize-scss": "3.0.0",
"node-sass": "4.5.0",
"nyc": "11.0.2",
"react-addons-test-utils": "15.4.2",
"react-markdown": "2.5.0",
"require-globify": "1.4.1",
"run-sequence": "1.2.2",
"sass-lint": "1.10.2",
"sass-loader": "6.0.6",
"sinon": "2.0.0",
"through2": "2.0.3",
"uglifyjs-webpack-plugin": "0.4.6",
"url-loader": "0.5.9",
"vinyl-source-stream": "1.1.0",
"webpack": "3.5.6",
"webpack-bundle-analyzer": "2.9.0",
"webpack-stream": "4.0.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": {
"bootstrap": "npm install && cd addon && npm install && cd .. && gulp",
"start": "cross-env USE_HTTPS=1 NODE_ENV=development ENABLE_DEV_LOCALES=1 ENABLE_DEV_CONTENT=1 gulp",
"analyzer": "cross-env ANALYZER=1 webpack --watch --progress --colors",
"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' 'src/**/tests.js'",
"flow": "flow frontend",
"l10n:extract": "gulp content-extract-strings",
"l10n:check": "npm run l10n:extract && git diff-files --quiet --ignore-all-space locales && echo 'No missing strings'",
"test:ci": "cross-env NODE_ENV=test nyc mocha --recursive --reporter mocha-junit-reporter --require frontend/test-setup.js frontend/test 'frontend/src/**/tests.js'",
"test:watch": "npm test -- --watch",
"test:all": "npm run lint && npm run flow && npm run test && npm run flow-coverage && cd addon && npm run lint && npm run test && tox -e ui-tests",
"coverage": "cross-env NODE_ENV=test nyc mocha --recursive --require frontend/test-setup.js frontend/test",
"flow-coverage": "cd frontend && flow-coverage-report --threshold 60 -i 'src/**/*.js' -t html -o coverage/flow",
"addon:locales": "gulp addon-copy-locales",
"package": "cd addon && npm install && npm run package && cp addon.xpi ..",
"content": "gulp content-build",
"storybook": "start-storybook -s ./frontend/build -p 6006",
"build-storybook": "build-storybook -o ./frontend/build/storybook"
}
}