-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
63
64
65
66
67
68
69
70
{
"name": "join-js",
"description": "A library to map complex database joins to nested objects.",
"version": "1.1.2",
"author": "Naresh Bhatia",
"license": "MIT",
"homepage": "https://github.com/archfirst/joinjs",
"repository": {
"type": "git",
"url": "https://github.com/archfirst/joinjs.git"
},
"main": "dist/index.js",
"types": "index.d.ts",
"files": [
"dist/",
"index.d.ts",
"LICENSE"
],
"scripts": {
"lint": "eslint '{src,test}/**/*.js'",
"prebuild": "del-cli dist",
"build": "babel src -d dist",
"build:local": "npm run lint && npm run test:coverage && npm run build",
"test": "mocha --require babel-register",
"test:coverage": "nyc --reporter=lcov --reporter=text mocha --require babel-register",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"cz-commit": "git-cz",
"docs": "jsdoc src -d apidocs"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"commitizen": "^4.2.1",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"eslint": "^7.10.0",
"husky": "^4.3.0",
"jsdoc": "^3.6.6",
"marked": "^1.2.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0
]
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}