This repository was archived by the owner on Aug 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 KB
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
56
{
"name": "@badgeup/badgeup-browser-client",
"version": "3.0.0",
"description": "Official Node.js client for BadgeUp, a user engagement and gamification service.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"pretest": "node scripts/target-2016.js && tsc",
"posttest": "node scripts/target-2017.js && tsc",
"watch": "tsc -w",
"dev": "tsc -w",
"test": "mocha --require ts-node/register --recursive spec/*.spec.* && npm run lint",
"build": "tsc",
"lint": "tslint -c tslint.yml 'src/**/*.ts' 'spec/**/*.ts'"
},
"author": "Mark Herhold <mark@badgeup.io>",
"repository": {
"type": "git",
"url": "https://github.com/badgeup/badgeup-browser-client"
},
"license": "MIT",
"dependencies": {
"abab": "2.0.0",
"check-types": "^7.4.0",
"lodash.defaultsdeep": "4.6.0",
"p-retry": "^3.0.0"
},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/lodash.defaultsdeep": "4.6.4",
"@types/mocha": "5.2.5",
"@types/node": "10.9.4",
"@types/p-retry": "2.0.0",
"chai": "4.2.0",
"mocha": "5.2.0",
"ts-node": "8.0.1",
"tslint": "5.12.1",
"tslint-eslint-rules": "5.4.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "3.2.4"
},
"files": [
"src",
"dist/src"
],
"keywords": [
"badgeup",
"sass",
"achievements",
"awards",
"engagement",
"gamification",
"javascript",
"nodejs"
]
}