-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 848 Bytes
/
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
{
"name": "msg-format",
"version": "1.0.4",
"description": "message formatter for javascript",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build && tsc",
"lint": "tslint src/**/*.ts --project tsconfig.json",
"precommit": "npm run lint && npm test",
"test": "ts-mocha src/**/*.test.ts"
},
"keywords": [
"javascript",
"message-format",
"internationalization"
],
"author": "sumit.sinha",
"repository": "https://github.com/sumit-sinha/msg-format",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.4",
"chai": "^4.1.2",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"ts-mocha": "^1.2.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.9.2"
},
"dependencies": {
"dt-format": "^1.0.8"
}
}