-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.14 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.14 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
82
83
84
85
86
87
88
{
"name": "typed-storage",
"version": "2.2.0",
"description": "A wrapper library for *Storage implementations that facilitates storing typed objects",
"repository": {
"type": "git",
"url": "https://github.com/cdibbs/typed-storage"
},
"author": {
"name": "Chris Dibbern",
"email": "chrisdibbern@gmail.com"
},
"main": "./dist/index",
"types": "./dist/index.d.ts",
"module": "./dist/bundles/typed-storage.es5.js",
"bugs": {
"url": "https://github.com/cdibbs/typed-storage/issues"
},
"license": "MIT",
"scripts": {
"pretest": "tsc --project tsconfig-test.json",
"test": "alsatian test/lib/*.spec.js",
"ttest": "alsatian test/lib/*.spec.js --tap",
"cover": "nyc npm test",
"compodoc": "compodoc -p tsconfig.json",
"e2e": "",
"build": "npm-run-all tsc webpack",
"webpack": "webpack",
"tsc": "tsc",
"tslint": "tslint --project tslint.json",
"prepublishOnly": "npm run build",
"report_coverage": "nyc report --reporter=lcov && codecov"
},
"typings": "./dist/index.d.ts",
"private": false,
"dependencies": {},
"optionalDependencies": {},
"devDependencies": {
"@compodoc/compodoc": "latest",
"@types/jasmine": "^2.8.7",
"@types/node": "^10.0.3",
"alsatian": "^2.2.1",
"chalk": "2.4.0",
"codecov": "^3.0.2",
"compodoc": "0.0.41",
"core-js": "^2.5.6",
"cross-env": "^5.1.5",
"inversify": "^4.13.0",
"npm-run-all": "^4.1.3",
"nyc": "^12.0.1",
"protractor": "^5.3.2",
"rxjs": "^5.5.10",
"shelljs": "0.8.2",
"simple-mapper": "^2.1.3",
"sorcery": "^0.10.0",
"source-map-support": "^0.5.6",
"tslint": "^5.10.0",
"typescript": "^2.9.1",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0",
"zone.js": "^0.8.26"
},
"nyc": {
"include": [
"test/lib/*.js",
"test/lib/**/*.js"
],
"extension": [
"*.ts",
"*.js"
],
"exclude": [
"typings",
"src/e2e/resources",
"**/*.d.ts",
"*.spec.ts",
"**/*.spec.js",
"**/i-*.js"
],
"reporter": [
"json",
"html"
],
"require": [
"source-map-support/register"
]
}
}