-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "@raika/rdate",
"version": "0.0.5",
"description": "my jalali date",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:Raika/RDate.git"
},
"author": "Raika <[email protected]>",
"keywords": [
"jalali"
],
"license": "MIT",
"private": false,
"files": [
"dist/**/*"
],
"dependencies": {
"date-fns": "^1.30.1",
"jalaali-js": "^1.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/jalaali-js": "^1.1.0",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"prettier": "^1.16.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.3.1"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
}
}