-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 959 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
{
"name": "alvarcarto-price-util",
"version": "7.3.3",
"description": "Calculates Alvar Carto prices",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kimmobrunfeldt/alvarcarto-price-util.git"
},
"author": "Kimmo Brunfeldt",
"license": "MIT",
"homepage": "https://github.com/kimmobrunfeldt/alvarcarto-price-util#readme",
"dependencies": {
"big.js": "^5.2.2",
"currency-formatter": "^1.5.5"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-env": "^1.2.1",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-plugin-import": "^1.15.0",
"lodash": "^4.17.15",
"mocha": "^3.0.2",
"np": "^2.12.0",
"request": "^2.88.0",
"request-promise": "^4.2.5"
},
"scripts": {
"test": "mocha",
"lint": "eslint ./src ./test",
"version": "npm run build && git add dist",
"build": "babel src --out-dir dist"
}
}