forked from bahmutov/cypress-hyperapp-unit-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.86 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
{
"name": "cypress-hyperapp-unit-test",
"description": "Unit test Hyperapp components using Cypress",
"version": "0.0.0-development",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": "https://github.com/bahmutov/cypress-hyperapp-unit-test/issues",
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm test",
"git add src/*.js",
"npm run ban"
],
"pre-push": [
"npm run secure",
"npm run license",
"npm run ban -- --all",
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"engines": {
"node": ">=6"
},
"files": [
"src/*.js",
"!src/*-spec.js",
"dist"
],
"homepage": "https://github.com/bahmutov/cypress-hyperapp-unit-test#readme",
"keywords": [
"cypress",
"cypress-io",
"hyperapp",
"test"
],
"license": "MIT",
"main": "dist",
"module": "src",
"private": false,
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-hyperapp-unit-test.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check --no-dev .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js",
"prelint": "npm run pretty",
"pretest": "npm run lint",
"pretty": "prettier-standard 'src/*.js'",
"secure": "nsp check",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "cypress run",
"pretest:ci": "npm run build",
"test:ci": "npm run test",
"test:ci:record": "npm run cy:run:record",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:record": "cypress run --record",
"unit": "mocha src/*-spec.js",
"unused-deps": "dependency-check --unused --no-dev .",
"semantic-release": "semantic-release",
"transpile": "tsc",
"prebuild": "npm run transpile",
"build": "npm run build:todo-app",
"build:todo-app": "parcel build apps/todo.html -d bundles/todo --public-url ./"
},
"release": {
"analyzeCommits": "simple-commit-message"
},
"devDependencies": {
"@types/node": "9.6.47",
"axios": "0.18.0",
"ban-sensitive-files": "1.9.2",
"common-tags": "1.8.0",
"cypress": "3.2.0",
"dependency-check": "3.3.0",
"deps-ok": "1.4.1",
"git-issues": "1.3.1",
"hyperapp": "1.2.9",
"license-checker": "20.2.0",
"mocha": "5.2.0",
"nsp": "3.2.1",
"parcel-bundler": "1.12.3",
"picostyle": "2.1.2",
"pre-git": "3.17.1",
"prettier-standard": "8.0.1",
"simple-commit-message": "4.0.3",
"standard": "12.0.1",
"typescript": "2.9.2",
"semantic-release": "15.13.12"
},
"standard": {
"globals": [
"Cypress",
"cy",
"expect"
]
}
}