-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.21 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
106
{
"name": "type-to-calculate",
"description": "Just type in keyboard and do the math. No need to open the calculator.",
"version": "1.0.0",
"homepage": "https://github.com/gokulk16/type-to-calculate",
"author": "https://github.com/gokulk16",
"repository": {
"type": "git",
"url": "https://github.com/gokulk16/type-to-calculate"
},
"scripts": {
"start": "xt-build -e dev -w",
"start:firefox": "xt-build -e dev -p firefox -w",
"build": "xt-clean && xt-build -e prod",
"build:dev": "xt-clean && xt-build -e dev -w",
"build:firefox": "xt-build -e prod -p firefox",
"watch": "npm-watch",
"clean": "xt-clean",
"docs": "xt-docs",
"test": "xt-test",
"coverage": "nyc --reporter=lcov npm run test",
"sync": "xt-sync"
},
"watch": {
"build": {
"patterns": [
"src",
"assets",
"locales"
],
"extensions": "js,html,css,json",
"legacyWatch": true,
"delay": 2500,
"runOnChangeOnly": false
},
"test": {
"patterns": [
"test"
],
"extensions": ".js",
"legacyWatch": true,
"delay": 2500,
"runOnChangeOnly": false
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintIgnore": [
"test/**/*"
],
"devDependencies": {
"country-to-currency": "^1.1.5",
"extension-cli": "^1.2.4",
"lodash": "^4.17.21",
"mathjs": "^12.4.1",
"npm-watch": "^0.11.0",
"show-toast": "^1.1.4"
},
"xtdocs": {
"source": {
"include": [
"README.md",
"src"
]
}
},
"xtbuild": {
"dist": "./dist",
"source": "./src",
"releases": "./dist",
"release_name": "release",
"manifest": "./src/manifest.json",
"assets": [
"./assets/**/*"
],
"copyAsIs": [
"./src/html/*",
"./src/css/**/*"
],
"locales_dir": "./locales/",
"locales_list": [
"en"
],
"js_bundles": [
{
"name": "background",
"src": "./src/background_worker.js"
},
{
"name": "popup",
"src": [
"./src/popup.js"
]
},
{
"name": "editor",
"src": [
"./src/js/editor.js"
]
}
]
}
}