-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.77 KB
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
{
"private": true,
"description": "Material Components React",
"license": "Apache-2.0",
"scripts": {
"start": "webpack-dev-server --config test/screenshot/webpack.config.js --content-base test/screenshot",
"stop": "./test/screenshot/stop.sh",
"capture": "./node_modules/.bin/mocha --compilers js:babel-core/register --ui tdd test/screenshot/capture-suite.js",
"commitmsg": "validate-commit-msg",
"fix": "eslint --fix packages test",
"lint": "eslint packages test",
"pretest": "npm run lint && npm stop && ./test/screenshot/start.sh",
"test": "npm run test:unit && npm run test:image-diff",
"posttest": "npm stop && istanbul report --root coverage text-summary && istanbul check-coverage --lines 95 --statements 95 --branches 95 --functions 95",
"test:watch": "karma start karma.local.js --auto-watch",
"test:unit": "karma start karma.local.js --single-run",
"test:unit-ci": "karma start karma.ci.js --single-run",
"test:image-diff": "./node_modules/.bin/mocha --compilers js:babel-core/register --ui tdd --timeout 30000 test/screenshot/diff-suite.js",
"upload:screenshots": "node ./test/screenshot/upload-screenshots.js"
},
"config": {
"validate-commit-msg": {
"helpMessage": "%s\nNOTE: Please see angular's commit message guidelines (https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits) for information on how to format commit messages.\n\nAs an example, here is a valid commit message: 'docs(slider): Document slider public api'\n\nIf this commit is on a development / WIP branch, you can disable this by running `git commit --no-verify`.",
"scope": {
"allowed": [],
"validate": true
}
}
},
"devDependencies": {
"@google-cloud/storage": "^1.6.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"capture-chrome": "^2.0.0",
"chai": "^4.1.2",
"css-loader": "^0.28.10",
"eslint": "^3.19.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"fs-readfile-promise": "^3.0.1",
"glob": "^7.1.2",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.13",
"mocha": "^5.0.2",
"node-sass": "^4.7.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"puppeteer": "^1.1.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"resemblejs": "^2.10.0",
"sass-loader": "^6.0.7",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
}
}