forked from qontu/ngx-inline-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ng2-inline-editor",
"version": "0.1.1-alpha.18",
"author": {
"name": "Carlos Caballero",
"email": "caballerog.carlos@gmail.com"
},
"maintainers": [{
"name": "Carlos Caballero",
"email": "caballerog.carlos@gmail.com"
},
{
"name": "Toni Villena",
"email": "tonivj5@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caballerog/ng2-inline-editor"
},
"bugs": {
"url": "https://github.com/caballerog/ng2-inline-editor/issues"
},
"keywords": [
"angular",
"angular4"
],
"main": "ng2-inline-editor.umd.js",
"module": "ng2-inline-editor.es5.js",
"es2015": "ng2-inline-editor.es2015.js",
"typings": "ng2-inline-editor.d.ts",
"scripts": {
"build": "gulp build && echo 'To publish a new version of library, please use npm run publish'",
"build:watch": "gulp",
"clean": "gulp clean",
"commit": "git-cz",
"gulp": "gulp",
"lint": "tslint --type-check --project ./src/tsconfig.json src/**/*.ts",
"publish": "cd dist && npm publish",
"test": "tsc && karma start"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {},
"peerDependencies": {
"@angular/common": "^4.0.2",
"@angular/core": "^4.0.2",
"@angular/forms": "^4.0.2"
},
"devDependencies": {
"@angular/common": "^4.0.2",
"@angular/compiler": "^4.0.2",
"@angular/compiler-cli": "^4.0.2",
"@angular/core": "^4.0.2",
"@angular/forms": "^4.0.2",
"@types/del": "^2.2.32",
"@types/gulp": "^3.8.32",
"@types/gulp-rename": "^0.0.32",
"@types/jasmine": "^2.5.47",
"@types/merge2": "^0.3.30",
"@types/node": "~7.0.13",
"@types/run-sequence": "^0.0.28",
"codelyzer": "^3.0.0",
"commitizen": "^2.9.6",
"conventional-changelog-lint": "^1.1.9",
"core-js": "^2.4.1",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-inline-ng2-template": "^4.0.0",
"gulp-ngc": "^0.3.0",
"gulp-rename": "^1.2.2",
"gulp-rollup": "^2.11.0",
"gulp-typescript": "^3.1.6",
"jasmine-core": "^2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "^1.6.0",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"merge2": "^1.0.3",
"node-watch": "^0.5.2",
"phantomjs-prebuilt": "~2.1.14",
"protractor": "~5.1.0",
"reflect-metadata": "~0.1.10",
"rollup": "^0.41.6",
"run-sequence": "^1.2.2",
"rxjs": "^5.3.0",
"ts-loader": "^2.0.3",
"ts-node": "~2.0.0",
"tslint": "^5.1.0",
"typescript": "~2.2.2",
"zone.js": "^0.8.5"
},
"engines": {
"node": ">=6.0.0"
}
}