-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "node-environment",
"version": "0.5.1",
"description": "Inspect NODE_ENV environment variable",
"main": "./lib/index.js",
"engines": {
"node": ">=12"
},
"types": "./lib/index.d.ts",
"exports": "./lib/index.js",
"scripts": {
"typecheck": "tsc --noEmit -p jsconfig.json",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"prettier": "prettier --ignore-path .gitignore --ignore-unknown \".\"",
"lint": "npm run eslint -- \".\"",
"lint:app": "npm run eslint -- --ignore-pattern \"**/__*(tests|mocks|snapshots)__/**/*\" ./lib",
"lint:tests": "npm run eslint -- \"./lib/**/__*(tests|mocks|snapshots)__/**/*\"",
"eslint": "eslint --ignore-path .gitignore",
"test": "jest",
"test:watch": "npm t -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pherval/node-environment.git"
},
"keywords": [
"NODE_ENV",
"inspector",
"test"
],
"author": "Peter <npmjs@peter.dev.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pherval/node-environment/issues"
},
"homepage": "https://github.com/pherval/node-environment#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@tsconfig/node16": "^1.0.1",
"babel-jest": "^27.0.2",
"eslint": "^7.27.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.3",
"jest-extended": "^1.2.0",
"jest-watch-typeahead": "^0.6.4",
"prettier": "^2.3.0"
}
}