-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "ensure-gitignore",
"version": "1.2.0",
"description": "Ensure the presence of patterns within a project's gitignore",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint .",
"release": "changeset publish",
"test": "jest"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit --extends seek",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/ensure-gitignore.git"
},
"author": "SEEK",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/ensure-gitignore/issues"
},
"homepage": "https://github.com/seek-oss/ensure-gitignore#readme",
"devDependencies": {
"@changesets/cli": "^2.17.0",
"eslint": "^5.7.0",
"eslint-config-seek": "^3.2.1",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3"
},
"release": {
"success": false
}
}