-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 844 Bytes
/
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
{
"name": "airnow-aqi",
"version": "1.0.5",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"prepublish": "tsc",
"scripts": {
"test": "mocha test",
"build": "rm -rf dist && tsc"
},
"author": "garethgeorge",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.0.3",
"expect": "^27.1.0",
"gulp": "^4.0.2",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"mocha": {
"package": "./package.json",
"extension": [
"ts"
],
"spec": [
"test/**/*.test.ts"
],
"recursive": true,
"file": [],
"require": [
"ts-node/register",
"source-map-support/register"
],
"ui": "bdd",
"exit": true
}
}