-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
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
{
"name": "measure-fns",
"version": "1.1.1",
"description": "Functions for conversion and handling of measurements",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Luke Hansford <mail@lukehansford.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lhansford/measure-fns.git"
},
"scripts": {
"build": "rollup --config ./config/rollup.config.js",
"lint": "node_modules/eslint/bin/eslint.js src --ext .js,.ts",
"lint:fix": "yarn lint --fix",
"start": "yarn build && node dist/index.js",
"test": "jest --config ./config/jest.config.js",
"test:watch": "jest --watchAll",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"release": "yarn semantic-release"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@saithodev/semantic-release-backmerge": "^1.5.3",
"@semantic-release/git": "^9.0.1",
"@types/jest": "^27.0.1",
"babel-jest": "^29.0.1",
"eslint": "^7.32.0",
"eslint-config-lukehansford-base": "^1.1.0",
"eslint-plugin-jest-formatting": "^3.0.0",
"fast-check": "^2.17.0",
"jest": "^27.1.1",
"prettier": "^2.4.0",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^19.0.5",
"typescript": "^4.4.3"
},
"bugs": {
"url": "https://github.com/lhansford/measure-fns/issues"
},
"homepage": "https://github.com/lhansford/measure-fns#readme",
"keywords": [
"measurements",
"measure",
"conversion",
"weights",
"functional"
],
"dependencies": {
"number-precision": "^1.5.1"
}
}