forked from cypress-io/cypress-webpack-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.6 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
{
"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": "npm run test-unit && npm run test-e2e",
"test-e2e": "mocha test/e2e/*.js",
"test-unit": "mocha test/unit/*.js",
"test-debug": "node --inspect --debug-brk ./node_modules/.bin/_mocha",
"test-watch": "chokidar '*.js' 'test/unit/*.js' -c 'npm run test-unit'",
"semantic-release": "semantic-release pre && npm publish --access public && semantic-release post"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.2",
"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",
"fs-extra": "8.1.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",
"snap-shot-it": "7.9.0",
"webpack": "^4.18.1"
},
"peerDependencies": {
"webpack": "^4.18.1"
},
"optionalDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.2"
},
"dependencies": {
"bluebird": "3.7.1",
"debug": "4.1.1"
},
"release": {
"verifyConditions": "condition-circle",
"analyzeCommits": "simple-commit-message",
"generateNotes": "github-post-release",
"verifyRelease": {
"path": "dont-crack",
"test-against": []
}
}
}