-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "idate",
"version": "0.2.0",
"description": "Iranian Date constractor for Javascript",
"main": "dist/idate.min.js",
"types": "./index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build": "cross-env NODE_ENV=production webpack --progress --colors",
"dev": "webpack --progress --colors --watch",
"lint": "eslint ./ --ext .js",
"lint:fix": "eslint ./ --ext .js --fix",
"test": "npm run lint && mocha",
"prepublish": "npm run clean & npm run build"
},
"author": "nainemom <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.3",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.1",
"rimraf": "^2.6.2",
"webpack": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nainemom/idate.git"
},
"keywords": [
"date",
"iranian",
"jalali",
"farsi",
"idate",
"persian"
],
"bugs": {
"url": "https://github.com/nainemom/idate/issues"
},
"homepage": "https://github.com/nainemom/idate#readme"
}