-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "angular-interpolate",
"version": "1.0.6",
"description": "Recursively interpolate variables in strings.",
"main": "angular-interpolate.js",
"scripts": {
"build": "./node_modules/uglify-js/bin/uglifyjs angular-interpolate.js --compress -o angular-interpolate.min.js --source-map angular-interpolate.min.js.map",
"test": "./node_modules/karma/bin/karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SevaSafris/angular-interpolate.git"
},
"keywords": [
"angular",
"interpolate",
"recursive"
],
"author": "Seva Safris <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SevaSafris/angular-interpolate/issues"
},
"homepage": "https://github.com/SevaSafris/angular-interpolate",
"devDependencies": {
"angular-mocks": "^1.5.8",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-junit-reporter": "^1.1.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"uglify-js": "^2.7.4"
},
"dependencies": {
"angular": "^1.4.0"
}
}