-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "harvest-api-client",
"description": "",
"license": "BSD-3-Clause",
"readme": "README.md",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/harvest-platform/harvest-js"
},
"author": {
"name": "Byron Ruth",
"email": "[email protected]"
},
"version": "1.0.1",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.14.1",
"eslint-loader": "^1.6.1",
"flow-bin": "^0.34.0",
"mocha": "^3.0.2",
"webpack": "^2.2.1"
},
"dependencies": {
"parse-link-header": "^0.4.1",
"url-params": "^1.0.2",
"whatwg-fetch": "^1.0.0"
},
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch",
"test": "mocha --compilers js:babel-core/register",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
}
}