-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
{
"name": "measurement",
"description": "A flexible library for handling unit conversions",
"version": "2.0.0",
"license": "MIT",
"author": "Joel Felsinger <jffelsinger@gmail.com> (joelfredrick.com)",
"keywords": [
"measurement",
"measurements",
"metric",
"conversions"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:cjs && npm run build:types && npm run build:esm && npm run build:rollup",
"build:types": "rm -rf dist/types && tsc -p tsconfig.types.json",
"build:cjs": "rm -rf dist/cjs && tsc -p tsconfig.cjs.json",
"build:esm": "rm -rf dist/esm && tsc -p tsconfig.esm.json",
"build:rollup": "rollup --config",
"test": "nyc mocha",
"test:mocha": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/jfelsinger/measurement.git"
},
"bugs": "https://github.com/jfelsinger/measurement/issues",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.tests.ts",
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}