-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "babel-plugin-remove-test-ids",
"description": "Babel plugin to remove data-test-id attributes from the DOM",
"homepage": "https://documentup.com/kutyel/babel-plugin-remove-test-ids",
"version": "1.1.0",
"main": "index.js",
"author": {
"name": "Flavio Corpa",
"url": "https://github.com/kutyel"
},
"files": [
"index.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kutyel/babel-plugin-remove-test-ids.git"
},
"bugs": {
"url": "https://github.com/kutyel/babel-plugin-remove-test-ids/issues"
},
"keywords": [],
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"coveralls": "latest",
"git-dirty": "latest",
"jest": "latest",
"prettier-standard": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"clean": "rm -rf node_modules",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "standard-markdown && standard",
"prelint": "npm run pretty",
"pretest": "npm run lint",
"pretty": "prettier-standard index.js index.test.js",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"license": "MIT",
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
},
"standard": {
"env": [
"jest"
]
}
}