-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (46 loc) · 1.16 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
{
"name": "ember-mocha-to-qunit-codemod",
"version": "0.4.0",
"scripts": {
"lint": "eslint --cache .",
"test": "codemod-cli test",
"test:coverage": "codemod-cli test --coverage",
"update-docs": "codemod-cli update-docs",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"bin": "./bin/cli.js",
"keywords": [
"codemod",
"codemod-cli",
"mocha",
"qunit"
],
"homepage": "https://github.com/yads/ember-mocha-to-qunit-codemod#readme",
"bugs": {
"url": "https://github.com/yads/ember-mocha-to-qunit-codemod/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yads/ember-mocha-to-qunit-codemod.git"
},
"license": "MIT",
"author": "Vadim Kazakov <[email protected]>",
"dependencies": {
"codemod-cli": "^3.2.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^26.6.3",
"prettier": "^2.8.0"
},
"engines": {
"node": "14.* || >= 16"
},
"jest": {
"testEnvironment": "node"
}
}