-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "@tleef/context-js",
"version": "2.2.0",
"main": "lib/context.js",
"scripts": {
"build": "tsc",
"lint": "tslint --fix --project .",
"test": "mocha \"src/**/*.test.ts\" --require ts-node/register --require source-map-support/register",
"test:coverage": "nyc --extension .ts --exclude \"src/**/*.test.ts\" --reporter lcovonly --reporter text yarn test",
"prepare": "yarn build"
},
"repository": "git+https://github.com/tleef/context-js.git",
"author": "Tom Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/tleef/context-js/issues"
},
"homepage": "https://github.com/tleef/context-js#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.11",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"sinon": "^7.3.1",
"sinon-chai": "^3.3.0",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.4.1"
},
"dependencies": {
"@tleef/unique-js": "^1.4.0",
"@types/events": "^3.0.0",
"events": "^3.0.0"
}
}