forked from payscale/country-currency-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "country-currency-map",
"version": "1.0.12",
"description": "Mapping of countries and their primary currency.",
"main": "lib/country-currency-map.js",
"scripts": {
"test": "mocha -R min -r babel-register --reporter progress test.js",
"lint": "eslint --config .eslintrc *.js",
"compile": "babel -d lib/ country-currency-map.js country-map.js currency-map.js && webpack",
"prepublish": "npm run test && npm run lint && npm run compile"
},
"keywords": [
"countries",
"currencies",
"currency",
"country"
],
"author": {
"name": "PayScale",
"email": "[email protected]",
"url": "http://www.payscale.com"
},
"repository": {
"type": "git",
"url": "https://github.com/payscale/country-currency-map.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-payscale": "0.0.8",
"eslint-plugin-react": "^7.5.1",
"mocha": "^3.2.0",
"path": "^0.12.7",
"webpack": "^2.3.2"
},
"dependencies": {
"lodash.findkey": "^4.6.0"
}
}