-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 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": "dt-format",
"version": "1.0.8",
"description": "date 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": [
"datetime",
"locale",
"javascript",
"java-simpledateformat",
"date-format-english",
"date-format-french",
"date-format-german",
"date-format-spanish",
"date-format-simplified-chinese",
"date-format-russian",
"date-format-arabic",
"date-format-japanese"
],
"author": "sumit.sinha",
"repository": "https://github.com/sumit-sinha/dt-format",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.4",
"chai": "^4.1.2",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"ts-loader": "^4.4.2",
"ts-mocha": "^1.2.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.9.2",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {}
}