-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 974 Bytes
/
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
{
"name": "margin-calc",
"version": "0.2.0",
"description": "Utility for calculating gross profit, gross margin percentage, and markup percentage",
"main": "./lib/margincalc.js",
"scripts": {
"build": "babel src -d lib",
"lint": "eslint ./src",
"prepublish": "npm run build",
"test": "mocha --recursive --compilers js:babel/register"
},
"repository": {
"type": "git",
"url": "git://github.com/thisiskeith/margin-calc.git"
},
"author": "Keith Hansen",
"license": "MIT",
"bugs": {
"url": "https://github.com/thisiskeith/margin-calc/issues"
},
"babel": {
"presets": ["es2015"]
},
"homepage": "https://github.com/thisiskeith/margin-calc",
"devDependencies": {
"babel": "^5.8.34",
"babel-core": "^6.3.26",
"babel-eslint": "^4.0.5",
"babel-istanbul": "^0.5.9",
"chai": "^3.4.1",
"codecov.io": "^0.1.6",
"eslint": "^1.8.0",
"eslint-plugin-react": "^3.7.1",
"mocha": "^2.3.4"
}
}