-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
82 lines (82 loc) · 2.15 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
{
"name": "unitmath",
"version": "1.1.1",
"description": "JavaScript library for unit conversion and arithmetic",
"main": "index.js",
"module": "./es/UnitMath.js",
"exports": {
".": {
"import": "./es/UnitMath.js",
"require": "./dist/UnitMath.js"
}
},
"files": [
"dist",
"lib",
"es",
"src"
],
"types": "./es/UnitMath.d.ts",
"scripts": {
"build": "rollup -c && cp es/* docs/js/.",
"clean": "rm -rf dist es",
"toc": "markdown-toc -i README.md",
"prepublishOnly": "npm test",
"test": "npm run lint && npm run test:src",
"test:src": "jest --all",
"test:bundle": "npm run build && jest --testMatch '**/test/**/*.test-bundle.js'",
"test:compiled": "npm run build && jest --testMatch '**/test/**/*.test-compiled.js'",
"lint": "standard --env=jest --env=worker --verbose",
"lint:fix": "standard --env=jest --env=worker --fix --verbose",
"coverage": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericman314/unitmath.git"
},
"keywords": [
"unit",
"conversion",
"arithmetic",
"math",
"engineering",
"science"
],
"author": "Eric Mansfield",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ericman314/unitmath/issues"
},
"homepage": "https://github.com/ericman314/unitmath#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.0",
"babel-jest": "^29.4.3",
"core-js": "3.28.0",
"decimal.js": "^10.4.3",
"esm": "^3.2.25",
"jest": "^29.4.3",
"markdown-toc": "^1.2.0",
"rollup": "^3.17.0",
"rollup-plugin-dts": "^5.2.0",
"standard": "^17.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"standard": {
"ignore": [
"*.test-compiled.js",
"*.test-bundle.js",
"types/*",
"docs/*"
]
}
}