-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 920 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 920 Bytes
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
{
"name": "xrate",
"version": "1.0.0",
"description": "A simple angular filter for displaying an exchange rate properly depending on its value",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "jshint ./src/xrate.js ./tests/xrate.spec.js",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Carnid/xrate.git"
},
"keywords": [
"currency",
"exchange",
"rate",
"angular",
"filter"
],
"author": "Alexandre Vinet (vinetalexandre42@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Carnid/xrate/issues"
},
"homepage": "https://github.com/Carnid/xrate#readme",
"devDependencies": {
"angular-mocks": "^1.5.5",
"jasmine-core": "^2.4.1",
"jshint": "^2.9.2",
"karma": "^0.13.22",
"karma-jasmine": "^1.0.2",
"phantomjs-prebuilt": "^2.1.7"
}
}