-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
105 lines (105 loc) · 2.98 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "nepalify",
"version": "0.5.0",
"description": "A Javascript library that adds instant support for Nepali(नेपाली) input on HTML <input> and <textarea>.",
"main": "index.js",
"module": "src/index.js",
"unpkg": "umd/nepalify.production.min.js",
"scripts": {
"clean": "rimraf umd cjs",
"deps": "npm-check --update",
"supported": "browserslist",
"webpack": "webpack",
"np": "np --any-branch",
"webpack-dev-server": "webpack-dev-server",
"dev:server": "npm run webpack-dev-server -- --env.mode development --env.target=umd",
"dev": "npm-run-all -s clean dev:server",
"build:umd": "npm run webpack -- --env.mode development --env.target=umd",
"build:umdmin": "npm run webpack -- --env.mode production --env.target=umd",
"build:cjs": "npm run webpack -- --env.mode development --env.target=commonjs2",
"build:cjsmin": "npm run webpack -- --env.mode production --env.target=commonjs2",
"build:cleanexample": "rimraf umd/index.html cjs/index.html",
"build": "npm-run-all -s clean build:*",
"format:pretty": "prettier --write src/ test/",
"format:eslint": "eslint --fix src/**/*.js test/**/*.js",
"format": "npm-run-all --sequential format:*",
"release": "npm-run-all --sequential build np",
"mocha": "mocha --recursive --require esm",
"test": "npm run mocha",
"test:watch": "npm run mocha -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suvash/nepalify.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"index.js",
"src/",
"cjs/",
"umd/"
],
"keywords": [
"nepali",
"romanized",
"unicode",
"keyboard",
"layout",
"नेपाली"
],
"author": "Suvash Thapaliya",
"license": "ISC",
"bugs": {
"url": "https://github.com/suvash/nepalify/issues"
},
"homepage": "https://github.com/suvash/nepalify#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^8.2.2",
"browserslist": "^4.21.4",
"chai": "^4.3.6",
"core-js": "^3.26.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"esm": "^3.2.25",
"html-webpack-plugin": "^4.3.0",
"mocha": "^8.3.1",
"np": "^7.6.2",
"npm-check": "^6.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^4.2.2"
},
"browserslist": [
"cover 99.5%",
"ie 11",
"ie 10",
"ie 9"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": {
"version": 3,
"proposals": true
}
}
]
]
}
}