-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 840 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 840 Bytes
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
{
"name": "@fabricelements/message-helpers",
"description": "SMS/MMS helpers.",
"main": "lib/index.js",
"types": "src/index.ts",
"author": "The FabricElements Authors",
"license": "BSD-3-Clause",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "git@github.com:FabricElements/message-helpers.git"
},
"dependencies": {
"libphonenumber-js": "^1.7.15"
},
"devDependencies": {
"tslint": "^5.15.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.3",
"vrsource-tslint-rules": "^6.0.0"
},
"private": true,
"scripts": {
"lint": "tslint --project ./tsconfig.json",
"lint-fix": "tslint -c tslint.json --project . --project -t codeFrame --fix",
"clear": "rm -rf ./lib",
"build": "npm run clear && npm run lint && tsc -p ./tsconfig.json",
"tsc": "tsc"
}
}