-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
55
56
57
58
59
60
61
62
{
"name": "chipa",
"version": "0.2.1",
"description": "Extract code snippets from md files.",
"main": "lib/index.js",
"scripts": {
"prettier": "prettier --no-semi --single-quote --trailing-comma es5",
"test": "jest",
"format": "npm run prettier -- --write 'lib/**/*.js' && npm run prettier -- --write 'test/**/*.js'",
"precommit": "lint-staged",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Huemul/chipa.git"
},
"keywords": [
"markdown",
"snippets",
"code",
"extract"
],
"author": "Christian Gill <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Huemul/chipa/issues"
},
"homepage": "https://github.com/Huemul/chipa#readme",
"dependencies": {
"glob": "^7.1.1",
"ramda": "^0.23.0",
"remark": "^7.0.0"
},
"devDependencies": {
"husky": "^0.13.3",
"jest": "^19.0.2",
"lint-staged": "^3.4.0",
"np": "^2.14.1",
"prettier": "^1.2.2"
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 90,
"functions": 90,
"lines": 90
}
}
},
"lint-staged": {
"test/**/*.js": [
"npm run prettier -- --write",
"git add"
],
"lib/**/*.js": [
"npm run prettier -- --write",
"git add"
]
}
}