-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "pasoonate",
"version": "1.2.10",
"description": "DateTime helpers and convert to calendars.",
"main": "dist/Pasoonate.js",
"directories": {
"example": "example",
"dist": "dist",
"src": "src"
},
"keywords": [
"calendar",
"convert",
"date",
"time"
],
"babel": {
"presets": [
"@babel/preset-env"
]
},
"scripts": {
"build": "npm-run-all clean transpile",
"transpile": "babel ./src --out-dir dist",
"clean": "rimraf dist",
"gulp:build": "gulp minify",
"gulp:dev": "gulp build",
"gulp:watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pasoonate/pasoonate-js.git"
},
"author": "Majid Ataee",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-replace": "^1.1.3",
"gulp-uglify": "^3.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}