-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "rosy",
"version": "1.0.0",
"description": "A firefox extension to translate numerical values to sinhala words.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/whizsid/Rosy.git"
},
"keywords": [
"firefox",
"numbers",
"sinhala",
"words",
"translate",
"unicode",
"mouseover",
"tooltip",
"convert",
"numeric"
],
"author": "whizsid",
"license": "MIT",
"bugs": {
"url": "https://github.com/whizsid/Rosy/issues"
},
"homepage": "https://github.com/whizsid/Rosy#readme",
"scripts": {
"build": "NODE_ENV=production node ./node_modules/webpack-cli/bin/cli.js && zip -FS -r -j rosy dist",
"dev": "node ./node_modules/webpack-cli/bin/cli.js --watch",
"lint": "eslint --ignore-pattern dist ."
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-classes": "^7.4.4",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.11.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webextension-polyfill-ts": "^0.9.1",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"tslint-config-prettier": "^1.18.0"
}
}