-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.85 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.85 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
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
{
"name": "node-tests",
"version": "0.0.0",
"description": "Node module for javascript tests and simple functions with es5/es6",
"main": "dist/index.js",
"types": "lib",
"license": "MIT",
"repository": "mfdeveloper/node-tests",
"author": {
"name": "Felipe",
"email": "mfelipeof@gmail.com",
"url": "https://github.com/mfdeveloper"
},
"bin": "cli.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && jest --watch",
"test:all": "xo && jest --notify",
"test:ci": "xo && jest --ci",
"test:web:ui": "majestic",
"test:web:app": "majestic --app",
"compile": "babel src lib --out-dir=dist --source-maps",
"build": "babel src lib --out-dir=dist --ignore 'src/**/*.spec.js','src/**/*.test.js',lib/**/*.spec.js','lib/**/*.test.js'",
"prepublish": "npm run build"
},
"files": [
"dist",
"cli.js"
],
"keywords": [
"cli-app",
"cli",
""
],
"dependencies": {
"meow": "*",
"babel-runtime": "*"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/jest": "^25.1.4",
"babel-jest": "^25.1.0",
"core-js": "^2.6.11",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jest-formatting": "^1.2.0",
"jest": "*",
"majestic": "^1.6.2",
"xo": "*"
},
"xo": {
"esnext": true,
"space": 4,
"extends": [
"plugin:jest/recommended",
"plugin:jest/style",
"plugin:jest-formatting/recommended"
],
"ignores": [
"dist/**"
],
"plugins": [
"jest",
"jest-formatting"
],
"envs": [
"jest/globals"
],
"rules": {
"indent": [
"error",
"tab"
],
"no-var": "off",
"object-curly-spacing": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}