-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "javascript-wtf",
"version": "0.1.0",
"description": "JavaScript WTFs",
"scripts": {
"standard": "standard --verbose *.js __tests__/**/*.js __tests__/**/*/*.js",
"standard:fix": "npm run standard -- --fix",
"lint": "npm run standard",
"style": "npm run standard:fix",
"poststyle": "npm run lint",
"jest:ci": "jest --ci",
"jest:ci:unit": "npm run jest:ci -- unit.spec.js",
"testem": "testem",
"testem:ci": "testem ci",
"testem:ci:dot": "npm run testem:ci -- --reporter dot",
"testem:ci:tap": "testem ci --reporter tap > test/browsers/testem.tap",
"testem:ci:xunit": "testem ci --reporter xunit > test/browsers/testem.xunit.xml",
"testem:ci:all": "npm run testem:ci:tap && npm run testem:ci:xunit",
"pretest": "npm run lint",
"test": "npm run jest:ci:unit",
"predev": "npm run style",
"dev": "npm run jest:ci:unit"
},
"standard": {
"env": [
"jest"
],
"globals": [
"navigator",
"_",
"isFireFox"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/percebus/javascript-wtf.git"
},
"keywords": [
"JavaScript",
"gotchas",
"bugs",
"issues",
"tests"
],
"author": "percebus",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/percebus/javascript-wtf/issues"
},
"homepage": "https://github.com/percebus/javascript-wtf#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"lodash": "^4.17.21",
"standard": "latest",
"testem": "latest"
}
}