-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "@ngx-resource/core",
"version": "5.4.4",
"description": "Core of resource library",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --config tslint.json --project tsconfig.json --type-check --format stylish",
"tsc": "tsc",
"webpack": "webpack",
"build": "npm run clean && npm run lint && npm run tsc && npm run webpack",
"build.full": "npm run build && cpx package.json dist/ && cpx README.md dist/",
"publish": "npm publish dist --access public"
},
"keywords": [
"ngx-resource",
"ngx-resource-core",
"ngx-resource-rest",
"ng2-resource",
"ng2-resource-rest",
"Angular2",
"Resource"
],
"repository": {
"type": "git",
"url": "git+https://github.com/troyanskiy/ngx-resource-core.git"
},
"main": "bundles/core.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"author": "Roman Rosluk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/troyanskiy/ngx-resource-core/issues"
},
"devDependencies": {
"@types/node": "^8.0.34",
"awesome-typescript-loader": "^3.2.3",
"clean-webpack-plugin": "^0.1.17",
"rimraf": "^2.6.2",
"tslint": "^5.7.0",
"typescript": "^2.5.3",
"webpack": "^3.12.0",
"cpx": "latest"
}
}