-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.71 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
89
90
91
92
93
94
{
"name": "e2e4",
"version": "2.5.0",
"description": "Set of base classes and utilities to build unobtrusive list models",
"jsnext:main": "esm/index.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/eastbanctechru/e2e4.git"
},
"keywords": [],
"author": "EastBanc Technologies",
"license": "MIT",
"bugs": {
"url": "https://github.com/eastbanctechru/e2e4/issues"
},
"homepage": "https://github.com/eastbanctechru/e2e4#readme",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"conventional-changelog": "conventional-changelog",
"conventional-github-releaser": "conventional-github-releaser",
"changelog": "npm run conventional-changelog -- -p angular -i CHANGELOG.md -s",
"rimraf": "rimraf",
"tslint": "tslint",
"tsc": "tsc",
"synt": "synt",
"prettier": "prettier",
"prettify": "npm run prettier -- --print-width 120 --tab-width 4 --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"sift": "npm run clean:src && npm run clean:tests && npm run synt -- analyze src tests",
"preversion": "npm run precommit",
"version": "npm run docs && git add -A docs && npm run changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm run conventional-github-releaser -- -p angular",
"build": "npm run clean:src && npm run compile:cjs && npm run compile:esm",
"ci": "npm run lint && npm run build && npm run test",
"precommit": "npm run rimraf -- esm coverage && npm run clean:src && npm run clean:tests && npm run lint && npm run build && npm run test",
"clean:src": "npm run rimraf -- \"src/**/*.+(js|js.map|d.ts)\" ",
"clean:tests": "npm run rimraf -- \"tests/**/*.+(js|js.map|d.ts)\" ",
"compile:cjs": "npm run tsc -- -p tsconfig.json",
"compile:esm": "npm run tsc -- -p tsconfig.esm.json",
"docs": "npm run rimraf -- docs && typedoc --out docs --mode file --readme none --gaID UA-47538916-3 src/",
"lint": "npm run tslint -- --project tsconfig.json",
"test": "npm run clean:tests && karma start karma.conf.js",
"test:watch": "npm run clean:tests && karma start karma.conf.debug.js"
},
"jspm": {
"registry": "npm",
"main": "index.js",
"format": "commonjs"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.2",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.5",
"conventional-github-releaser": "^3.1.2",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"es6-shim": "^0.35.3",
"git-pre-commit": "^2.1.4",
"istanbul-instrumenter-loader": "3.0.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rxjs": "^6.3.2",
"sinon": "^6.3.4",
"synt": "^0.4.8",
"ts-loader": "^5.1.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typedoc": "0.12.0",
"typescript": "^3.0.3",
"wallaby-webpack": "^3.9.12",
"webpack": "^4.19.1"
},
"dependencies": {},
"greenkeeper": {
"ignore": [
"istanbul-instrumenter-loader"
]
}
}