-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.02 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
{
"name": "air-conc-aqi-converter",
"version": "0.1.0",
"description": "Converts to and from air pollutants' concentration values and AQI values",
"main": "./dist/index.js",
"module": "./src/index.js",
"scripts": {
"build": "babel src -d dist",
"test-iaqi": "npm run build && mocha dist/test/calcIaqi.test.js || true",
"test-kr": "npm run build && mocha dist/test/krAqi.test.js || true",
"test-level": "npm run build && mocha dist/test/getLevelByAqi.test.js || true",
"test-pos": "npm run build && mocha dist/test/posInLevel.test.js || true",
"test-bp": "npm run build && mocha dist/test/getAqiBreakpoints.test.js || true",
"test-all": "npm run build && mocha dist/**/*.js || true"
},
"author": "Herbert Lim",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.1",
"chai": "^4.2.0",
"mocha": "^6.2.3"
},
"dependencies": {
"d3-scale": "^3.2.3",
"lodash": "^4.17.21"
}
}