-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
48
49
50
51
52
{
"name": "@dudousxd/monad.ts",
"version": "1.0.3",
"main": "src/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DavideCarvalho/monad.ts.git"
},
"bugs": {
"url": "https://github.com/DavideCarvalho/monad.ts/issues"
},
"author": {
"name": "Davi de Carvalho",
"email": "[email protected]",
"url": "https://github.com/DavideCarvalho"
},
"scripts": {
"test": "node_modules/.bin/nyc node_modules/.bin/mocha",
"test:coverage": "node_modules/.bin/nyc node_modules/.bin/mocha && node_modules/.bin/nyc report --reporter=text",
"build": "node_modules/.bin/tsc"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"chai": "^4.1.2",
"jest": "^22.4.3",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"source-map-support": "^0.5.4",
"ts-jest": "^22.4.2",
"ts-node": "^5.0.1",
"typescript": "^2.8.1",
"typings": "^2.1.1"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"coverage/**",
"**/*.test.ts",
"**/dist/*.js"
],
"reporter": [
"html"
],
"all": true
}
}