-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.94 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.94 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "simple-mapper",
"version": "2.2.0",
"description": "A convention-based mapping library for nodejs and the browser.",
"keywords": [],
"contributors": [],
"homepage": "https://github.com/cdibbs/simple-mapper",
"engines": {},
"repository": {
"type": "git",
"url": "https://github.com/cdibbs/simple-mapper"
},
"author": {
"name": "Chris Dibbern",
"email": "chrisdibbern@gmail.com"
},
"bundle": "./dist/bundles/simple-mapper.es5.js",
"main": "./dist/index",
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/cdibbs/simple-mapper/issues"
},
"license": "MIT",
"scripts": {
"pretest": "tsc --project tsconfig-test.json",
"test": "alsatian --tap test/lib/*.spec.js",
"cover": "nyc npm test",
"compodoc": "compodoc -p tsconfig.json",
"e2e": "",
"build": "npm-run-all tsc webpack",
"webpack": "webpack",
"tsc": "tsc",
"prepublishOnly": "npm run build",
"report_coverage": "nyc report --reporter=lcov && codecov"
},
"typings": "./dist/index.d.ts",
"private": false,
"dependencies": {},
"devDependencies": {
"@compodoc/compodoc": "^1.1.2",
"@types/node": "^10.0.3",
"alsatian": "^2.2.1",
"alsatian-fluent-assertions": "^1.0.0-alpha018",
"codecov": "^3.0.0",
"core-js": "^2.5.6",
"cross-env": "^5.1.5",
"npm-run-all": "^4.1.3",
"nyc": "^12.0.1",
"rxjs": "^5.5.10",
"source-map-support": "^0.5.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0"
},
"nyc": {
"include": [
"test/lib/*.js",
"test/lib/**/*.js"
],
"extension": [
".js"
],
"exclude": [
"typings",
"src/e2e/resources",
"**/*.d.ts",
"**/*.spec.ts",
"**/*.spec.js",
"**/i-*.js",
"test/lib/i/index.js"
],
"reporter": [
"json",
"html"
],
"require": [
"source-map-support/register"
]
}
}