-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "nepali-date",
"version": "0.1.3",
"description": "A Nepali date library for extracting dates based on Bikram Sambat (B. S.) and perform converstions with Gregorian calendar (A. D.)",
"main": "cjs/index.js",
"files": [
"cjs"
],
"scripts": {
"test": "jest",
"lint": "eslint src",
"clean": "rimraf cjs",
"build": "babel src -d cjs",
"prepare": "npm run lint && npm run test && npm run clean && npm run build"
},
"bin": {
"ad2bs": "./cjs/scripts/ad2bs.js",
"bs2ad": "./cjs/scripts/bs2ad.js"
},
"repository": {
"url": "https://github.com/sharingapples/nepali-date.git",
"type": "git"
},
"author": "Ranjan Shrestha",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.12.0",
"jest": "^23.3.0",
"jest-babel": "^1.0.1",
"rimraf": "^2.6.2"
},
"dependencies": {}
}