-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.07 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
{
"name": "solve-conversion-path",
"version": "1.1.0",
"description": "Given an array of converters with a 'from' and 'to' property and an array of available formats in strings, find the smallest number of conversions of the available formats required, in order to reach the requested format",
"main": "dist/solveConversionPath.js",
"scripts": {
"transpile": "babel solveConversionPath.js --modules umd --out-dir dist",
"minify": "uglifyjs dist/solveConversionPath.js --compress --screw-ie8 --mangle --output dist/solveConversionPath.min.js",
"build": "npm run transpile && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maximilianos/solve-conversion-path.git"
},
"keywords": [
"algorithm",
"solver"
],
"author": "Max GJ Panas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Maximilianos/solve-conversion-path/issues"
},
"homepage": "https://github.com/Maximilianos/solve-conversion-path#readme",
"devDependencies": {
"babel": "^5.8.23",
"uglifyjs": "^2.4.10"
}
}