-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "angular-input-highlight",
"version": "0.1.2",
"description": "Angular directive adding fragment highlighting capabilities to textarea inputs",
"main": "angular-input-highlight.js",
"scripts": {
"test": "karma start --single-run --no-watch",
"start": "coffee --watch --compile *.coffee & live-server --port=${PORT:=8080}; kill %",
"build": "coffee --compile *.coffee"
},
"keywords": [
"highlight",
"textarea",
"angular"
],
"author": "Sergii Iavorskyi <[email protected]>",
"license": "MIT",
"dependencies": {
"angular": "^1.2.28"
},
"repository": {
"type": "git",
"url": "https://github.com/yavorskiy/angular-input-highlight.git"
},
"devDependencies": {
"chai": "^3.0.0",
"coffee-script": "^1.10.0",
"karma": "^0.12.37",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-coffee-preprocessor": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-ie-launcher": "^0.2.0",
"karma-ievms": "0.0.4",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.0",
"karma-safari-launcher": "^0.1.1",
"live-server": "^0.7.1",
"mocha": "^2.2.5",
"optimist": "^0.6.1",
"phantomjs": "^1.9.17"
}
}