forked from cypress-io/cypress-webpack-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.24 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
{
"name": "@cypress/webpack-preprocessor",
"description": "Cypress preprocessor for bundling JavaScript via webpack",
"version": "0.0.0-development",
"author": "Chris Breiding <[email protected]>",
"bugs": "https://github.com/cypress-io/cypress-webpack-preprocessor/issues",
"files": [
"*.js"
],
"private": false,
"homepage": "https://github.com/cypress-io/cypress-webpack-preprocessor#readme",
"keywords": [
"cypress",
"cypress-plugin",
"cypress-preprocessor",
"webpack"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress-webpack-preprocessor.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check --no-dev .",
"license": "license-checker --production --onlyunknown --csv",
"lint": "eslint --fix *.js",
"pretest": "npm run lint",
"secure": "nsp check",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "mocha",
"test-watch": "chokidar '*.js' 'test/*.js' -c 'npm test'",
"semantic-release": "semantic-release pre && npm publish --access public && semantic-release post"
},
"devDependencies": {
"ban-sensitive-files": "1.9.0",
"chai": "4.1.2",
"chokidar-cli": "1.2.0",
"condition-circle": "1.5.0",
"dependency-check": "2.9.1",
"deps-ok": "1.2.1",
"dont-crack": "1.2.1",
"eslint": "4.6.1",
"eslint-plugin-cypress-dev": "1.1.1",
"eslint-plugin-mocha": "4.11.0",
"github-post-release": "1.13.1",
"license-checker": "13.0.3",
"mocha": "3.5.0",
"mockery": "2.1.0",
"nsp": "2.7.0",
"prettier-eslint-cli": "4.4.0",
"semantic-release": "8.2.0",
"simple-commit-message": "3.3.1",
"sinon": "3.2.1",
"sinon-chai": "2.13.0"
},
"dependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"bluebird": "3.5.0",
"debug": "3.1.0",
"lodash.clonedeep": "4.5.0",
"webpack": "^4.0.0"
},
"release": {
"verifyConditions": "condition-circle",
"analyzeCommits": "simple-commit-message",
"generateNotes": "github-post-release",
"verifyRelease": {
"path": "dont-crack",
"test-against": []
}
}
}