-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.3 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
{
"name": "lockum",
"version": "0.1.0",
"description": "",
"main": "./src/index.ts",
"repository": "github:disy/lockum",
"homepage": "https://github.com/disy/lockum",
"bugs": "https://github.com/disy/lockum/issues",
"scripts": {
"build": "tsc && webpack",
"test": "nyc mocha test/**/*.spec.ts",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": "Ahmet Eroglu <ahmet.eroglu@uni-konstanz.de>",
"license": "MIT",
"dependencies": {
"@types/text-encoding": "0.0.34",
"awesome-typescript-loader": "^5.2.1",
"chalk": "^2.4.1",
"cleanup-dependencies": "0.0.6",
"text-encoding": "^0.7.0",
"ts-loader": "^5.2.2",
"webpack": "^4.8.3"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"nyc": "^13.1.0",
"crypto": "^1.0.1",
"get-random-values": "^1.2.0",
"jsdom": "12.2.0",
"jsdom-global": "3.0.2",
"mocha": "^5.2.0",
"serviceworker-webpack-plugin": "^1.0.0-alpha02",
"source-map-support": "^0.5.9",
"subtle": "^0.1.8",
"ts-mockito": "^2.3.1",
"ts-node": "^7.0.1",
"typescript": "^3.0.3",
"typings": "^2.1.1",
"webpack-cli": "^3.1.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
]
}
}