-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 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
{
"name": "panaxjs",
"version": "0.0.1",
"author": "Benjamin Orozco <[email protected]>",
"description": "PanaxJS - PanaxDB Driver",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"commit": "git-cz",
"test:all": "node ./node_modules/istanbul/lib/cli.js cover -x \"config/*\" ./node_modules/mocha/bin/_mocha",
"test": "npm run test:all",
"eslint": "node node_modules/.bin/eslint -c .eslintrc *.js lib/**/*.js",
"eslint:fix": "node node_modules/.bin/eslint --fix -c .eslintrc *.js lib/**/*.js"
},
"config": {
"ghooks": {
"pre-commit": "npm run eslint && npm run test:all"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/panaxit/panaxjs.git"
},
"dependencies": {
"chalk": "^1.0.0",
"i-promise": "^1.1.0",
"libxmljs": "^0.16.1",
"lodash": "^3.10.1",
"mkdirp": "^0.5.0",
"mssql": "^2.1.1",
"q": "^1.4.1"
},
"devDependencies": {
"chai": "^3.0.0",
"commitizen": "^2.4.6",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^1.10.3",
"ghooks": "^0.3.2",
"istanbul": "^0.3.22",
"mocha": "^2.2.5"
}
}