-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
47
48
49
50
51
{
"name": "turtle",
"version": "1.0.0",
"description": "A web app to implement some of the basic decision metrics and algorithms used in the \"turtle trading\" strategy created by Richard Dennis.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"pretest": "gulp eslint",
"test": "gulp test",
"gulp": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rcalfredson/turtle.git"
},
"keywords": [
"finance",
"stocks",
"trading"
],
"author": "Robert C. Alfredson",
"license": "ISC",
"bugs": {
"url": "https://github.com/rcalfredson/turtle/issues"
},
"homepage": "https://github.com/rcalfredson/turtle#readme",
"dependencies": {
"cfenv": "^1.0.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"node-fetch": "^1.7.3",
"pug": "^2.0.0-rc.4",
"xml2js": "^0.4.19"
},
"devDependencies": {
"browser-sync": "^2.8.2",
"eslint-config-punchcard": "^1.0.1",
"eyeglass": "^1.1.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-eslint": "^3.0.0",
"gulp-if": "^1.2.5",
"gulp-imagemin": "^2.3.0",
"gulp-nodemon": "^2.0.3",
"gulp-sass": "^2.0.4",
"gulp-sass-lint": "^1.1.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"sass-toolkit": "^2.10.0"
}
}