-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "geek-sms",
"version": "1.0.0",
"description": "SMS SDK for Javascript",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Targeek/geek-sms"
},
"author": "Dương Đỗ <duong@targeek.io>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watchAll",
"cover": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint --project tsconfig.json --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"prerelease": "npm run test && npm run build",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@types/chance": "1.0.1",
"@types/jest": "23.3.9",
"@types/lodash.get": "4.4.6",
"@types/lodash.merge": "4.6.4",
"@types/loglevel": "1.5.3",
"@types/node": "10.12.7",
"chance": "1.0.16",
"coveralls": "3.0.2",
"husky": "1.1.4",
"jest": "23.6.0",
"lint-staged": "8.0.4",
"prettier": "1.15.2",
"rimraf": "2.6.2",
"standard-version": "4.4.0",
"ts-jest": "23.10.4",
"tslint": "5.11.0",
"tslint-config-prettier": "1.16.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.1.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint --fix --project tsconfig.json",
"prettier --write",
"git add"
]
},
"dependencies": {
"axios": "^0.18.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.1",
"loglevel": "^1.6.1"
}
}