-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 743 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 743 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
{
"name": "playstation-trophies",
"version": "1.0.0",
"description": "API to retrieve a user's Playstation trophy data",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run clean && npm run build",
"build": "babel src --out-dir .",
"clean": "rm -rf lib bin",
"cli": "node bin/cli.js",
"lint": "./node_modules/eslint/bin/eslint.js .",
"test": "npm run lint"
},
"author": "Jimmy Hillis <jimmy@hillis.me>",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0",
"request": "^2.69.0",
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-react": "^3.16.1"
}
}