-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "ta-lib",
"version": "0.0.1",
"description": "Technical Analysis functions in Javascript",
"scripts": {
"clean": "rimraf -rf test/ -rf lib/",
"test": "./node_modules/.bin/webpack-dev-server --port 3002 --hot --colors --config webpack.config.test.js --display-error-details"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WaiSiuKei/ta-lib.git"
},
"keywords": [
"ta-lib"
],
"author": "WaiSiuKei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WaiSiuKei/ta-lib/issues"
},
"homepage": "https://github.com/WaiSiuKei/ta-lib#readme",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"open-browser-webpack-plugin": "0.0.2",
"rimraf": "^2.5.2",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {}
}