forked from xzegga/angular-knob
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.55 KB
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
{
"name": "angular2-knob",
"version": "1.1.11",
"description": "Angular 4 directive for Knob component powered by d3.js v4 without jQuery dependencies",
"main": "./dist/index.js",
"module": "index.js",
"scripts": {
"cleanup": "rimraf dist/bundles dist/src dist/index.d.ts dist/index.js dist/index.js.map dist/LICENCE dist/README.md",
"bundling": "rollup -c",
"minify": "uglifyjs dist/bundles/angular2-knob.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/angular2-knob.umd.min.js",
"build": "npm run cleanup && ngc && npm run bundling && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xzegga/ng2-knob.git"
},
"keywords": [
"Knob",
"Angular",
"d3v4",
"angular2-knob"
],
"author": "Raul Escamilla",
"license": "MIT",
"bugs": {
"url": "https://github.com/xzegga/ng2-knob/issues"
},
"homepage": "https://github.com/xzegga/ng2-knob#readme",
"dependencies": {
"d3": "^4.10.0",
"@types/d3": "^4.10.0",
"@types/d3-selection": "^1.1.0",
"d3-selection-multi": "^1.0.1",
"@types/d3-selection-multi": "^1.0.6"
},
"devDependencies": {
"@angular/compiler": "^4.3.6",
"@angular/compiler-cli": "^4.3.6",
"@types/d3-selection": "^1.1.0",
"d3-selection-multi": "^1.0.1",
"@types/d3-selection-multi": "^1.0.6",
"@types/d3": "^4.10.0",
"@angular/core": "^4.3.6",
"rxjs": "^5.4.3",
"zone.js": "^0.8.17",
"rimraf": "^2.6.1",
"rollup": "^0.49.2",
"typescript": "^2.4.2",
"uglify-js": "^3.0.28"
}
}