-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "worker-service-manager",
"version": "4.1.0",
"description": "",
"main": "lib/bundle.umd.js",
"module": "lib/bundle.module.js",
"types": "lib/src/workerServiceManager.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tresorit/WorkerServiceManager.git"
},
"homepage": "https://github.com/tresorit/WorkerServiceManager",
"scripts": {
"build": "rollup -c rollup.config.js",
"prepare": "npm run build && npm test",
"typecheck": "tsc --noEmit",
"lint": "tslint -c tslint.json --project tsconfig.json src/**/*.ts",
"lint-fix": "tslint -c tslint.json --project tsconfig.json --fix src/**/*.ts",
"test": "TS_NODE_PROJECT=test/tsconfig.json mocha -r ts-node/register test/**/*.specs.ts"
},
"keywords": [
"worker",
"service",
"messages"
],
"author": {
"name": "Tresorit",
"url": "https://github.com/tresorit/"
},
"license": "MIT",
"licence": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.2",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"rollup": "^0.65.0",
"rollup-plugin-typescript2": "^0.17.0",
"sinon": "^6.1.5",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
}
}