-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
77 lines (77 loc) · 2.53 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "persian-date",
"version": "1.1.0",
"license": "MIT",
"main": "dist/persian-date",
"author": "Reza Babakhani <[email protected]>",
"description": "Javascript date library for parsing, validating, manipulating, and formatting persian dates System.",
"keywords": [
"jalali-date",
"khayyam",
"date",
"calendar",
"persian-date"
],
"contributors": [
{
"name": "Reza Babakhani",
"email": "[email protected]"
}
],
"repository": "[email protected]:babakhani/PersianDate.git",
"homepage": "http://babakhani.github.io/PersianWebToolkit/docs/persian-date/",
"devDependencies": {
"amd-loader": "0.0.8",
"babel-cli": "6.0.0",
"babel-core": "6.22.1",
"babel-loader": "6.4.1",
"babel-plugin-import": "1.1.1",
"babel-plugin-transform-runtime": "6.22.0",
"babel-polyfill": "6.22.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-latest": "6.24.0",
"babel-runtime": "6.22.0",
"chai": "3.5.0",
"coveralls": "2.13.1",
"grunt": "1.0.1",
"grunt-babel": "6.0.0",
"grunt-cli": "0.1.13",
"grunt-contrib-watch": "1.0.0",
"grunt-jsdoc-to-markdown": "3.0.0",
"grunt-webpack": "2.0.1",
"grunt-webpack-server": "0.1.0",
"istanbul": "0.4.5",
"jsdoc": "3.2.0",
"jshint": "2.9.4",
"load-grunt-tasks": "3.5.2",
"markdown-doctest": "0.9.1",
"markdown-link-check": "3.1.2",
"mocha": "3.2.0",
"mocha-lcov-reporter": "0.0.2",
"moment": "2.18.1",
"pre-commit": "1.2.2",
"sync-pkg": "0.7.2",
"unminified-webpack-plugin": "1.2.0",
"webpack-dev-server": "2.3.0" ,
"eslint": "4.4.1",
"jalaali-js": "1.0.0",
"webpack": "2.3.3"
},
"scripts": {
"start": "webpack --watch & webpack-dev-server --port 5000 --watch --hot",
"dev": "webpack",
"build": " webpack; MIN=1 webpack; npm run test; npm run lint; npm run doc;",
"test": "nyc --reporter=html --reporter=text mocha --timeout 25000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/jshint/bin/jshint src/*.js; ./node_modules/eslint/bin/eslint.js src/",
"doc": "grunt --doc",
"doctest": "./node_modules/markdown-doctest/bin/cmd.js README.md && ./node_modules/markdown-link-check/markdown-link-check README.md && ./node_modules/markdown-doctest/bin/cmd.js doc/leapyear.md && ./node_modules/markdown-link-check/markdown-link-check doc/leapyear.md",
"sync-pkg": "sync-pkg",
"pre-dev": "sudo npm install -g nyc"
},
"pre-commit": [
"test",
"lint",
"doctest"
]
}