-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 820 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 820 Bytes
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
{
"name": "interpolate-es6",
"version": "0.0.1",
"description": "nterpolate the value within a target range based on a known value within a refernce range.",
"author": "Daniel Johnson <danjohnsonnj@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"build": "npm run lint && babel src --out-dir dist",
"prepublish": "npm run build",
"watch": "npm run lint && babel src --watch --out-dir dist"
},
"repository": {
"type": "git",
"url": "http://github.com/Danjohnsonnj/interpolate.git"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.11.1"
},
"dependencies": {
"babel-runtime": "^6.9.0"
}
}