-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 780 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 780 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
29
30
31
32
33
{
"name": "darkages",
"version": "1.0.4",
"description": "A Dark Ages client for Node.js applications.",
"main": "index.js",
"dependencies": {
"md5": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"eslint": "^5.10.0"
},
"scripts": {
"build": "babel src -d lib",
"lint": "eslint src",
"prepare": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericvaladas/da.js.git"
},
"author": "Eric Valadas <ericvaladas@me.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ericvaladas/da.js/issues"
},
"homepage": "https://github.com/ericvaladas/da.js#readme",
"files": [
"lib"
]
}