This repository has been archived by the owner on Mar 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "@ngui/sticky",
"version": "0.6.3",
"description": "CSS position: sticky implementation in Angular2",
"license": "MIT",
"main": "dist/sticky.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "NODE_ENV=dev webpack-dev-server --quiet --port 9001 --content-base app --config app/webpack.config --open",
"lint": "tslint 'src/**/*.ts' 'app/**/*.ts'",
"clean": "rimraf dist",
"build": "npm-run-all --serial clean build:ngc build:umd build:app",
"build:ngc": "ngc -p tsconfig.ngc.json",
"build:umd": "NODE_ENV=prod webpack",
"build:app": "NODE_ENV=prod webpack --config app/webpack.config",
"upgrade": "npm-check-updates --upgradeAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng2-ui/sticky.git"
},
"author": "Allen Kim <[email protected]>",
"bugs": {
"url": "https://github.com/ng2-ui/sticky/issues"
},
"homepage": "https://github.com/ng2-ui/sticky#readme",
"dependencies": {
"@ngui/utils": "^0.8.1"
},
"devDependencies": {
"@angular/common": "^4.0.3",
"@angular/compiler": "^4.0.3",
"@angular/compiler-cli": "^4.0.3",
"@angular/core": "^4.0.3",
"@angular/forms": "^4.0.3",
"@angular/http": "^4.0.3",
"@angular/platform-browser": "^4.0.3",
"@angular/platform-browser-dynamic": "^4.0.3",
"@angular/router": "^4.0.3",
"@types/node": "^7.0.13",
"angular2-template-loader": "^0.6.2",
"codelyzer": "^3.0.0",
"core-js": "^2.4.1",
"loader-utils": "^1.1.0",
"npm-check-updates": "^2.11.0",
"npm-run-all": "^4.0.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"rxjs": "^5.3.0",
"strip-loader": "^0.1.2",
"ts-loader": "^2.0.3",
"tslint": "^5.1.0",
"typescript": "^2.2.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4",
"zone.js": "^0.8.9"
}
}