forked from pnfo/pali-script-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
{
"name": "@pathnirvanafoundation/pali-script-converter",
"version": "1.0.0",
"description": "Library for transliterating pāli across multiple scripts.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Path Nirvana",
"license": "CC-BY-NC-SA-4.0",
"scripts": {
"dev": "webpack --progress --watch --env dev",
"dev-amd": "webpack --progress --watch --env dev --amd",
"build": "webpack --env dev && webpack --env dev --amd && webpack --env build && webpack --env build --amd && tsc",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"lint": "eslint .",
"lint:staged": "lint-staged",
"repl": "node -i -e \"$(< ./lib/pali-script-converter.js)\""
},
"repository": {
"type": "git",
"url": "https://github.com/Path-Nirvana-Foundation/pali-script-converter.git"
},
"keywords": [
"pāli",
"scripts",
"transliteration",
"webpack",
"es6",
"umd",
"commonjs"
],
"bugs": {
"url": "https://github.com/Path-Nirvana-Foundation/pali-script-converter/issues"
},
"homepage": "https://github.com/Path-Nirvana-Foundation/pali-script-converter",
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"babel-jest": "26.6.3",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-transform-class-properties": "6.24.1",
"cross-env": "7.0.3",
"eslint": "^7.14.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.0.0",
"husky": "^4.3.0",
"jest": "26.6.3",
"lint-staged": "^10.5.2",
"mocha": "^4.0.1",
"prettier": "^2.2.0",
"typescript": "^4.1.5",
"webpack": "5.11.0",
"webpack-cli": "4.2.0",
"yargs": "^10.0.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --cache"
]
}
}