forked from goodeggs/ng-string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "ng-string",
"version": "0.1.0",
"description": "An angular module for string manipulation. Encapsulates the awesome npm string package.",
"main": "lib/index.js",
"scripts": {
"test": "karma start spec/karma.config.coffee",
"pretest": "./node_modules/.bin/coffee --bare --compile --output lib/ src/ && ./node_modules/.bin/browserify lib/index.js > ng-string.js && ./node_modules/.bin/uglifyjs ng-string.js > ng-string.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/goodeggs/ng-string"
},
"keywords": [
"angularjs",
"string"
],
"author": "Max Edmands",
"license": "MIT",
"bugs": {
"url": "https://github.com/goodeggs/ng-string/issues"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"karma-mocha": "~0.1.1",
"karma-chai": "0.0.2",
"chai": "~1.8.1",
"uglify-js": "~2.4.7",
"mocha": "~1.15.1",
"angular": "~1.2.2",
"browserify": "~3.4.0",
"karma-script-launcher": "~0.1.0",
"karma-coffee-preprocessor": "~0.1.1",
"karma-chrome-launcher": "~0.1.1",
"karma-html2js-preprocessor": "~0.1.0",
"karma-firefox-launcher": "~0.1.2",
"karma-jasmine": "~0.1.4",
"requirejs": "~2.1.9",
"karma-requirejs": "~0.2.0",
"karma-phantomjs-launcher": "~0.1.1",
"karma": "~0.10.8"
},
"dependencies": {
"string": "~1.7.0"
}
}