-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 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
{
"name": "template-lib",
"version": "1.1.2",
"description": "Scaffold a Javascript library",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/template-lib.git"
},
"homepage": "https://github.com/tiaanduplessis/template-lib",
"bugs": "https://github.com/tiaanduplessis/template-lib/issues",
"author": {
"name": "Tiaan",
"email": "[email protected]",
"url": "tiaan.beer"
},
"scripts": {
"start": "npm run dev",
"pretest": "npm run lint:fix",
"test": "jest --env=node",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage",
"lint": "standard --verbose",
"lint:fix": "standard --fix --verbose",
"precommit": "npm run lint"
},
"keywords": [
"sao",
"scaffolding",
"module",
"library",
"template-lib"
],
"dependencies": {
"camelcase": "^4.1.0"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^21.2.1",
"sao": "^0.22.8",
"standard": "^10.0.3"
},
"standard": {
"ignore": [
"template"
]
},
"jest": {
"modulePathIgnorePatterns": [
"template/test",
"template/src"
]
}
}