forked from fingerpich/jalali-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "jalali-moment",
"version": "3.2.6",
"description": "Manipulate and convert Jalali and Gregorian date easily",
"author": {
"name": "Mojtaba Zarei (Fingerpich)",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"manipulate",
"validate",
"jalali",
"convert",
"miladi",
"shamsi",
"typescript",
"javascript",
"persian",
"khorshidi",
"date",
"time",
"calendar"
],
"main": "jalali-moment.js",
"scripts": {
"report-coverage": "export CODACY_PROJECT_TOKEN=7f46b99d0c1e4e0e9f176d98d70f972c; istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage",
"test": "mocha --reporter spec --ui bdd --colors --check-leaks test.js",
"build": "webpack --config webpack.browser.js",
"dev": "webpack --progress --colors --watch",
"make-npm-pack": "mkdir -p pkg;cp * ./pkg;cp -r node_modules/ ./pkg/node_modules; cp npmdoc.md ./pkg/README.md; cd ./pkg;npm run build",
"publish-npm-pack": "npm publish pkg;rm -rf pkg",
"lint": "eslint jalali-moment.js && eslint test.js"
},
"homepage": "https://github.com/fingerpich/jalali-moment",
"bugs": {
"url": "https://github.com/fingerpich/jalali-moment/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/fingerpich/jalali-moment.git"
},
"bin": {
"jalalim": "./cli.js"
},
"devDependencies": {
"chai": "^4.1.2",
"codacy-coverage": "^3.0.0",
"eslint": "^5.6.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"path": "^0.12.7",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"commander": "^2.17.1",
"inquirer": "^6.2.0",
"moment": "^2.23.0"
},
"typings": "./jalali-moment.d.ts"
}