-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "pandera",
"version": "1.0.2",
"description": "random p words",
"main": "index.js",
"license": "MIT",
"private": false,
"repository": {
"url": "https://github.com/thecodepixi/pandera"
},
"type": "module",
"contributors": [
"Emily Harber",
"Yechiel Kalmenson"
],
"scripts": {
"postversion": "git push --tags && yarn publish . --tag latest --access public && git push && echo \"Successfully released version $npm_package_version!\""
},
"bin": {
"pandera": "bin/index.js"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"airbnb-base",
"plugin:prettier/recommended"
],
"ignorePatterns": "node_modules/*.js",
"rules": {
"no-unused-vars": "warn",
"import/extensions": "disable"
},
"settings": {
"usePrettierrc": true
}
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1"
}
}