forked from sbmdkl/nepali-datepicker-reactjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "@sbmdkl/nepali-datepicker-reactjs",
"version": "1.2.1",
"description": "Nepali Datepicker Reactjs",
"author": "Shubham Dhakal",
"license": "MIT",
"repository": "sbmdkl/nepali-datepicker-reactjs",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint --ext .js,.jsx .",
"fix:lint": "eslint --fix --ext .js,.jsx .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"microbundle-crl": "*",
"babel-eslint": "*",
"cross-env": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-config-standard": "*",
"eslint-config-standard-react": "*",
"eslint-plugin-import": "*",
"eslint-plugin-node": "*",
"eslint-plugin-prettier": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-react": "*",
"eslint-plugin-standard": "*",
"gh-pages": "*",
"npm-run-all": "*",
"prettier": "*",
"react": "*",
"react-dom": "*",
"react-scripts": "*"
},
"files": [
"dist"
]
}