forked from HadoukenIO/notifications-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.78 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.78 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
57
58
{
"name": "openfin-notifications",
"version": "0.10.1",
"description": "Client library for the Openfin Notifications service",
"main": "dist/client/main-bundle.js",
"types": "dist/client/index.d.ts",
"files": [
"dist/client"
],
"scripts": {
"build": "svc-tools build --mode production",
"build:dev": "svc-tools build --mode development",
"channels": "svc-tools channels",
"check": "svc-tools check",
"clean": "rimraf gen dist",
"docs": "svc-tools docs",
"fix": "svc-tools fix",
"posttest": "npm run check",
"prepack": "npm run clean && npm run build && tsc -p src/client/tsconfig.types.json",
"test": "npm run test:unit && npm run test:int",
"test:int": "echo 'Integration tests not available yet'",
"test:unit": "jest --config jest-unit.config.json",
"zip": "svc-tools zip",
"start": "svc-tools start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openfin/Notification-Service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/openfin/Notification-Service/issues"
},
"homepage": "https://github.com/openfin/Notification-Service#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.2.0",
"@types/moment": "^2.13.0",
"@types/node": "^9.4.6",
"@types/openfin": "^39.0.1",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"express": "^4.16.2",
"hadouken-js-adapter": "^0.36.1-alpha.1",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"jest-environment-node": "^24.5.0",
"jest-junit": "^6.3.0",
"jest-util": "^23.4.0",
"moment": "^2.22.1",
"openfin-service-tooling": "^1.0.7",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"ts-jest": "^23.10.4",
"typescript": "~3.3.4000"
}
}