This repository was archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.45 KB
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
{
"name": "metrick",
"version": "0.2.0",
"description": "Babel-powered unit magick",
"main": "index.js",
"scripts": {
"prepublish": "babel src --out-dir . --source-maps inline --ignore \"**/*.spec.js\"",
"test": "jest",
"lint": "eslint src",
"lint-and-fixup": "eslint --fix src"
},
"keywords": [
"babel",
"babel-plugin-transform-function-bind",
"conversion",
"convert",
"data",
"distance",
"duration",
"imperial",
"length",
"magic",
"magick",
"metric",
"temperature",
"time",
"unit-conversion",
"units"
],
"homepage": "https://github.com/ticky/metrick",
"bugs": {
"url": "https://github.com/ticky/metrick/issues"
},
"repository": "https://github.com/ticky/metrick.git",
"author": "Jessica Stokes <hello@jessicastokes.net>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-function-bind": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.5",
"@babel/preset-env": "7.9.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.1.0",
"eslint": "6.8.0",
"flow-bin": "0.127.0",
"jest": "25.1.0"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-function-bind",
"@babel/plugin-proposal-object-rest-spread"
]
},
"jest": {
"collectCoverage": true
}
}