-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "crnc",
"version": "0.0.7",
"description": "currency conversion and functionality for the web",
"license": "MIT",
"type": "module",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"files": [
"x",
"s"
],
"main": "x/crnc.js",
"scripts": {
"build": "run-s clean && run-p compile importly && run-s test",
"clean": "rimraf x && mkdirp x",
"compile": "tsc",
"importly": "importly < package-lock.json > x/importmap.json && importly --host=unpkg < package-lock.json > x/importmap-cloud.json",
"watch": "tsc -w",
"start": "http-server",
"test": "cynic node x/tests.test.js"
},
"keywords": [
"money",
"currency",
"currency-exchange",
"currency-conversion",
"currency-converter",
"exchange-rates"
],
"dependencies": {
"@chasemoskal/snapstate": "^0.0.9",
"es-module-shims": "^1.6.3",
"lit": "^2.6.0"
},
"devDependencies": {
"cynic": "^0.2.0",
"http-server": "^14.1.1",
"importly": "^0.2.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
}
}