-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
63 lines (63 loc) · 2.18 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
{
"name": "ngresizable",
"version": "1.0.1",
"description": "Simple, tree-shakable, AoT, Universal and Web Worker friendly resizable component for Angular (2 and beyond).",
"main": "ngresizable.bundle.js",
"jsnext:main": "ngresizable.module.js",
"module": "ngresizable.module.js",
"types": "ngresizable.module.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*.spec.ts --recursive",
"test:watch": "mocha -w --require ts-node/register test/**/*.spec.ts --recursive",
"build": "rimraf dist && ts-node tools/inline-styles.ts && tsc -p tsconfig-esm.json && rollup -c rollup.config.js dist/ngresizable.module.js > dist/ngresizable.bundle.js && cp package.json dist && ts-node tools/cleanup.ts && ngc && cp readme.md dist",
"postbuild": "mv lib/ngresizable.component.ts.bak lib/ngresizable.component.ts",
"build:demo": "rimraf demo/dist && tsc -p tsconfig-demo.json",
"lint": "tslint -c tslint.json lib/**/*.ts test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/ngresizable.git"
},
"keywords": [
"resize",
"angular",
"resizable"
],
"author": "Minko Gechev <mgechev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mgechev/ngresizable/issues"
},
"homepage": "https://github.com/mgechev/ngresizable#readme",
"peerDependencies": {
"@angular/core": ">=4.0.0"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.37",
"@types/node": "^7.0.0",
"chai": "^3.5.0",
"codelyzer": "^2.0.0-beta.4",
"core-js": "^2.4.1",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rxjs": "^5.3.0",
"systemjs": "0.19.28",
"ts-helpers": "^1.1.2",
"ts-node": "^3.0.0",
"tslib": "^1.5.0",
"tslint": "^4.3.1",
"typescript": "^2.1.5",
"uglifyjs": "^2.4.10",
"zone.js": "^0.8.4"
}
}