-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "technical-analysis",
"version": "0.0.2",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/neraliu/technical-analysis"
}
],
"author": "Nera Liu",
"contributors": [
"Nera Liu <neraliu@gmail.com>"
],
"description": "JavaScript Implementation of Technical Analysis",
"repository": {
"type": "git",
"url": "git@github.com:neraliu/technical-analysis.git"
},
"keywords": [],
"scripts": {
"hint": "grunt jshint",
"build": "npm install; grunt",
"clean": "grunt clean",
"test": "grunt test"
},
"dependencies": {
},
"devDependencies": {
"chai": "^2.*",
"grunt": "^0.4.5",
"grunt-cli": "0.1.*",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-mocha-istanbul": "*",
"redis": "^0.12.*"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/neraliu/technical-analysis/issues"
},
"homepage": "https://github.com/neraliu/technical-analysis",
"directories": {
"test": "tests"
},
"license": "BSD"
}