-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.07 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.07 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
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
{
"name": "ng-caret-aware",
"version": "0.3.2",
"description": "AngularJS directive for caret aware elements",
"main": "dist/caretaware.min.js",
"author": {
"name": "Leo Di Donato",
"email": "leodidonato@gmail.com",
"url": "http://git.io/leodido"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/leodido/ng-caret-aware.git"
},
"homepage": "http://github.com/leodido/ng-caret-aware",
"devDependencies": {
"bower": "^1.3.12",
"coveralls": "^2.11.2",
"gulp-coveralls": "^0.1.4",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-bump": "^0.2.2",
"gulp-closure-compiler": "^0.2.19",
"lcov-parse": "0.0.9",
"gulp-debug": "^2.0.1",
"gulp-gjslint": "^0.1.4",
"gulp-help": "^1.3.3",
"gulp-jsbeautifier": "0.0.5",
"gulp-json-editor": "^2.2.1",
"gulp-protractor": "0.0.12",
"gulp-rename": "^1.2.2",
"gulp-util": "~3.0.4",
"gulp-webserver": "^0.9.0",
"jasmine-core": "2.3.0",
"jasmine-spec-reporter": "^2.1.0",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.3.1",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^0.1.4",
"karma-spec-reporter": "0.0.16",
"minimist": "^1.1.0",
"node.extend": "^1.1.3",
"protractor": "^2.0.0",
"run-sequence": "^1.0.2"
},
"scripts": {
"postinstall": "./node_modules/.bin/bower install",
"production": "./node_modules/.bin/gulp build --env production --banner",
"development": "./node_modules/.bin/gulp build --env development --banner",
"release": "npm run development && npm run production",
"unit": "./node_modules/.bin/gulp karma",
"e2e": "./node_modules/.bin/gulp protractor"
},
"keywords": [
"caret",
"cursor",
"input",
"textarea",
"angular",
"ng",
"directive",
"closure",
"gulp"
],
"directories": {
"source": "./lib",
"dist": "./dist",
"example": "./example",
"unit": "./test/unit",
"e2e": "./test/e2e"
},
"server": {
"port": 8000
}
}