-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ngx-model",
"version": "6.0.2",
"description": "Angular Model. Simple state management with minimalistic API, one way data flow, multiple model support and immutable data exposed as RxJS Observable.",
"main": "lib/index.ts",
"scripts": {
"clean": "rm -rf ./dist && rm -rf ./.ng_pkg_build && rm -f ./dist.tgz",
"test": "npm run clean && tslint *.ts && npm run format:ci && mocha ./lib/model.test.ts --require ts-node/register",
"watch": "mocha ./lib/model.test.ts --require ts-node/register --watch-extensions ts --watch ",
"build": "npm run clean && ng-packagr -p package.json",
"release": "npm run test && standard-version && git push --follow-tags origin master && npm run build && npm publish ./dist",
"format": "prettier --single-quote --write \"./**/*.ts\"",
"format:ci": "prettier --single-quote --list-different \"./**/*.ts\""
},
"ngPackage": {
"lib": {
"entryFile": "lib/index.ts",
"comments": "none"
}
},
"homepage": "https://github.com/tomastrajan/ngx-model#readme",
"peerDependencies": {
"@angular/core": ">=6.0.0",
"rxjs": "^6.1.0"
},
"devDependencies": {
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.6",
"@types/sinon": "^4.3.1",
"mocha": "^5.1.1",
"ng-packagr": "^3.0.0-rc.2",
"prettier": "^1.12.1",
"rxjs": "^6.1.0",
"sinon": "^4.5.0",
"standard-version": "^4.3.0",
"ts-node": "^6.0.0",
"tsickle": "~0.27.0",
"tslint": "^5.9.1",
"typescript": "~2.7.0",
"zone.js": "^0.8.26"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomastrajan/ngx-model.git"
},
"keywords": [
"angular",
"model",
"state management",
"rxjs",
"observable",
"immutable",
"one way data flow",
"typescript"
],
"author": "Tomas Trajan <tomas.trajan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomastrajan/ngx-model/issues"
}
}