-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "linear-converter-cli",
"version": "1.0.1",
"description": "Flexible linear converter with built in conversions for common units",
"main": "src/linear-converter.js",
"bin": {
"linear-converter": "src/linear-converter.js",
"lco": "src/linear-converter.js"
},
"scripts": {
"test": "./scripts/quick_tests.sh"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/javiercejudo/linear-converter-cli"
},
"keywords": [
"feature scaling",
"normalisation",
"normalization",
"scale",
"rescale"
],
"author": "Javier Cejudo",
"license": "MIT",
"bugs": {
"url": "https://github.com/javiercejudo/linear-converter-cli/issues"
},
"homepage": "https://github.com/javiercejudo/linear-converter-cli",
"devDependencies": {
"gulp": "^3.8.11",
"gulp-coveralls": "^0.1.3",
"gulp-istanbul": "^0.6.0",
"gulp-mocha": "^2.0.0",
"rimraf": "^2.3.2",
"should": "^5.0.0",
"sinon": "^1.13.0"
},
"dependencies": {
"arbitrary-precision": "^1.1.1",
"bigjs-adapter": "^2.2.0",
"commander": "^2.7.1",
"get-stdin": "^5.0.0",
"linear-converter": "^7.0.0",
"linear-preset-any-to-any": "^3.0.2",
"linear-presets": "^3.0.0",
"lodash.invert": "^3.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.pick": "^3.1.0",
"unit-synonyms": "^1.0.0"
}
}