-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.15 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.15 KB
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
{
"name": "myanmar-notation",
"version": "1.5.3",
"description": "A Node.js module and a library which converts the given number into words in Myanmar.",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"import": {
"node": "./index.mjs",
"default": "./index.js"
},
"require": "./index.js",
"types": "./index.d.ts"
}
},
"files": [
"lib",
"test",
"index.mjs",
"index.js",
"index.d.ts",
"min.js",
"min.js.map"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:node && npm run build:docs",
"build:node": "npm run build:cjs",
"build:web": "node webpack-build.mjs",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:esm": "tsc -p tsconfig-esm.json",
"docs": "npm run build:web && node webpack-docs-serve.mjs",
"build:docs": "npm run build:web && node webpack-docs-build.mjs",
"tst": "mocha",
"test": "mocha test/mocha-*.mjs",
"test:current": "mocha test/local.mjs"
},
"engines": {
"node": ">=16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khensolomon/myanmar-notation.git"
},
"keywords": [
"Myanmar",
"Number",
"Notation",
"Burmese",
"numeral",
"burma"
],
"bugs": {
"url": "https://github.com/khensolomon/myanmar-notation/issues"
},
"author": "Khen Solomon Lethil",
"license": "MIT",
"homepage": "https://khensolomon.github.io/myanmar-notation/",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.8.0",
"mocha": "^10.2.0",
"pinia": "^2.1.7",
"sass": "^1.70.0",
"sass-loader": "^14.1.0",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"vue": "^3.3.13",
"vue-loader": "^17.4.2",
"vue-resource": "^1.5.3",
"vue-router": "^4.2.5",
"vue-template-compiler": "^2.7.16",
"vue-template-loader": "^0.4.1",
"webpack": "^5.90.1",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
}
}