-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.48 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.48 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "sayt",
"version": "0.2.0",
"description": "Client for the SAYT API.",
"typings": "dist/src/index.d.ts",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"postinstall": "[ ! -d src ] || typings install",
"clean": "rimraf docs coverage dist node_modules typings",
"pretest": "rimraf coverage",
"prepush": "npm test && npm run license",
"test": "NODE_ENV=test karma start",
"test+coverage": "NODE_ENV=test karma start && npm run coverage",
"posttest": "npm run coverage",
"coverage": "npm run coverage:remap && npm run coverage:report",
"coverage:remap": "remap-istanbul -i coverage/coverage.json -o coverage/coverage.json -t json -e node_modules,test,karma.entry.ts",
"coverage:report": "istanbul report",
"build": "rimraf dist && tsc",
"ci": "NODE_ENV=ci karma start --singleRun=false",
"docs": "rimraf docs && typedoc --options ./typedoc.json ./src ./typings",
"license": "node licenseChecker.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/groupby/sayt.git"
},
"keywords": [
"typescript",
"library"
],
"author": "Ben Teichman",
"license": "MIT",
"bugs": {
"url": "https://github.com/groupby/sayt/issues"
},
"homepage": "https://github.com/groupby/sayt#readme",
"devDependencies": {
"@types/chai": "^4.0",
"@types/mocha": "^5.0",
"@types/qs": "^6.2.31",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"gb-license-check": "^1.0.1",
"husky": "^3.0.0",
"istanbul": "^0.4.5",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-source-map-support": "^1.2.0",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.4",
"object-assign": "^4.1.0",
"phantomjs-prebuilt": "^2.1.7",
"pre-commit": "^1.1.3",
"remap-istanbul": "^0.13.0",
"rimraf": "^2.5.4",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"ts-loader": "^6.0.4",
"tslint": "^5.1.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-loader": "^3.5.3",
"typedoc": "^0.14.2",
"typescript": "^3.5.2",
"typings": "^2.1.1",
"webpack": "^4.35.2"
},
"dependencies": {
"@types/node": "^12.6.1",
"es6-object-assign": "^1.0.3",
"es6-promise": "^4.1.0",
"filter-object": "^2.1.0",
"jsonp": "^0.2.0",
"qs": "^6.2.0"
}
}