-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.55 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
{
"name": "container-query-monorepo",
"license": "MIT",
"author": "Viktor Hubert <rpgmorpheus@gmail.com>",
"homepage": "https://github.com/ZeeCoder/container-query",
"repository": {
"type": "git",
"url": "https://github.com/ZeeCoder/container-query"
},
"bugs": {
"url": "https://github.com/ZeeCoder/container-query/issues"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-regenerator-runtime": "^6.5.0",
"ci-job-number": "^0.3.0",
"core-js": "^2.6.1",
"coveralls": "^3.0.2",
"css-loader": "^2.0.2",
"dom-testing-library": "^3.16.1",
"husky": "^1.1.4",
"jasmine-core": "^3.3.0",
"jest": "^23.6.0",
"karma": "^3.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-sauce-launcher": "^1.0.0",
"karma-spec-reporter": "^0.0.32",
"lerna": "^3.4.3",
"lint-staged": "^8.0.5",
"postcss-loader": "^3.0.0",
"postcss-media-minmax": "^4.0.0",
"postcss-nested": "^4.1.1",
"prettier": "^1.15.2",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"regenerator-runtime": "^0.13.1",
"style-loader": "^0.23.1",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
},
"scripts": {
"test:packages": "lerna run test",
"test:unit": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:integration": "karma start",
"test:integration:watch": "yarn test:integration:build --watch",
"test:integration:build": "node ./tests/react/manual/build-meta.js && webpack --config tests/webpack.config.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prettify": "prettier --write 'packages/**/*.js'",
"bootstrap": "lerna bootstrap",
"publish": "lerna bootstrap && yarn test:unit && yarn test:packages && lerna publish"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"postcss-container-query/src/test",
"postcss-container-query/saveMeta.js",
"postcss-container-query/getMetadataFromMessages.js",
"container-query-meta-builder/dist",
"container-query-meta-builder/src/test"
]
}
}