-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
51
52
53
54
55
{
"name": "achievement.js",
"version": "0.0.1-alpha-001",
"description": "A Node.js library for tracking user achievements and progress",
"author": "Ryan LaMarche <ry.lamarchee@gmail.com>",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist/* && tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node test/achievement.js",
"dev": "nodemon test/achievement.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmlamarche/Achievement.js.git"
},
"keywords": [
"achievement",
"gamify",
"user",
"progress",
"express",
"mongodb",
"mongoose"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rmlamarche/Achievement.js/issues"
},
"homepage": "https://github.com/rmlamarche/Achievement.js#readme",
"dependencies": {
"express": "^4.17.1",
"mongoose": "^5.6.7"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/mongodb": "^3.3.0",
"@types/mongoose": "^5.5.13",
"@types/node": "^12.7.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"rimraf": "^3.0.0",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
},
"files": [
"dist/",
"index.js",
"README.md",
"LICENSE"
]
}