-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "tsheets-sdk",
"version": "1.0.0",
"description": "TSheets JS SDK for full API access.",
"main": "./lib/index.js",
"module": "./es/tsheets-sdk.js",
"files": [
"src",
"lib"
],
"scripts": {
"lint": "eslint ./src ./test",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf lib coverage es",
"test": "mocha ./test/unit/**",
"test:cov": "istanbul cover $(npm bin)/_mocha ./test/unit/**",
"build:lib": "babel src --out-dir lib",
"build": "npm run clean && npm run build:lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"watch": "npm build:lib -- --watch",
"prepare": "npm run lint && npm test && npm run build",
"prepush": "npm run lint"
},
"dependencies": {
"request": "^2.72.0"
},
"devDependencies": {
"babel-cli": "^6",
"babel-core": "^6",
"babel-eslint": "^6",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"husky": "^0.14.3",
"istanbul": "1.1.0-alpha.1",
"mocha": "^5.2.0",
"nock": "^8.0.0",
"rimraf": "^2.6.2"
},
"repository": {
"type": "git",
"url": "[email protected]:prescottprue/tsheets-sdk.git"
},
"keywords": [
"tsheets",
"time",
"tracking"
],
"author": "prescottprue",
"license": "MIT",
"bugs": {
"url": "https://github.com/prescottprue/tsheets-sdk/issues"
},
"homepage": "https://github.com/prescottprue/tsheets-sdk"
}