-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "ng2-gridstack",
"private": false,
"version": "1.0.0",
"description": "A gridstack component for Angular2+",
"main": "dist/bundles/ng2-gridstack.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"transpile": "rimraf dist && ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ng2-gridstack.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ng2-gridstack.umd.min.js",
"build": "npm run transpile && npm run package && npm run minify"
},
"author": "Guillaume Perouffe <[email protected]>",
"repository": "https://github.com/ApolloSSC/ng2-gridstack",
"license": "ISC",
"dependencies": {
"gridstack": "0.3.0"
},
"devDependencies": {
"@angular/common": "^2.4.10",
"@angular/compiler": "^2.4.10",
"@angular/compiler-cli": "^2.4.10",
"@angular/core": "^2.4.10",
"@types/core-js": "^0.9.43",
"@types/jquery": "^3.2.16",
"@types/node": "^8.0.51",
"core-js": "^2.5.1",
"rimraf": "^2.6.2",
"rollup": "^0.51.5",
"rxjs": "^5.5.2",
"typescript": "^2.4.2",
"uglify-js": "^3.1.9",
"zone.js": "^0.8.18"
},
"peerDependencies": {
"@angular/core": "^2.4.0",
"@angular/common": "^2.4.0",
"rxjs": "^5.0.1"
}
}