-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 2.03 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
{
"name": "typescriptcollectionsframework",
"author": "Larry Diamond <[email protected]>",
"version": "4.4.13",
"description": "Collections Framework for TypeScript compatible with AngularJS",
"homepage": "https://github.com/larrydiamond/typescriptcollectionsframework",
"license": "MIT",
"engineStrict": true,
"dependencines": {},
"devDependencies": {
"@types/jasmine": "^3.3.9",
"gulp": "^4.0.0",
"gulp-jasmine": "^4.0.0",
"gulp-typescript": "^5.0.0",
"jasmine": "^3.4.0",
"jasts": "^1.0.0",
"merge2": "^1.2.3",
"standard-version": "^7.1.0",
"tslint": "^6.1.2",
"typedoc": "^0.14.2",
"typescript": "3.5.1"
},
"main": "dist/index.js",
"nyc": {
"exclude": [
"spec/*.ts"
]
},
"typings": "definitions/index",
"typescript": {
"definition": "definitions/index"
},
"scripts": {
"test": "rm -r -f dist && gulp build && jasmine dist/spec/*.spec.js",
"testwin": "gulp build && jasmine dist\\spec\\*.spec.js",
"release": "standard-version",
"tslint": "tslint -c tslint.json */*.ts",
"tslintwin": "tslint -c tslint.json *\\*.ts",
"tslintfix": "tslint --fix -c tslint.json */*.ts",
"tslintfixwin": "tslint --fix -c tslint.json *\\*.ts",
"typedoc": "typedoc --target ES5 --readme typedocreadme.html --excludeNotExported --excludeExternals --excludePrivate --out docs/typedoc/ src/*.ts --exclude **/spec/*.spec.ts --name 'TypeScriptCollectionsFramework https://github.com/larrydiamond/typescriptcollectionsframework'",
"typedocwin": "typedoc --target ES5 --readme typedocreadme.html --gitRevision master --excludeNotExported --excludeExternals --excludePrivate --out docs\\typedoc\\ src --exclude **\\spec\\*.spec.ts --name \"TypeScriptCollectionsFramework https://github.com/larrydiamond/typescriptcollectionsframework\"",
"allwin": "npm run testwin && npm run tslintwin && npm run tslintfixwin && npm run typedocwin"
},
"repository": {
"type": "git",
"url": "https://github.com/larrydiamond/typescriptcollectionsframework.git"
}
}