-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.33 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
65
66
67
68
69
70
71
{
"name": "@acoustic-content/delivery-sdk",
"version": "1.0.3",
"description": "Official JavaScript SDK for the Acoustic Content Delivery API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run build:min && npm run build:module",
"build:min": "webpack --config config/webpack-min.build",
"build:module": "webpack --config config/webpack-module.build",
"test": "mocha --timeout 10000 -r ts-node/register \"./tests/**/*.spec.ts\"",
"tslint:src": "tslint \"./src/**/*.ts\"",
"tslint:tests": "tslint \"./tests/**/*.ts\"",
"lint": "npm run tslint:src && npm run tslint:tests",
"tslint:fix": "npm run tslint:src -- --fix && npm run tslint:tests -- --fix",
"tslint:check": "tslint-config-prettier-check ./tslint.json",
"prettier:src": "prettier --write --config ./.prettierrc.js \"./src/**/*.ts\"",
"prettier:tests": "prettier --write --config ./.prettierrc.js \"./tests/**/*.ts\"",
"prettier": "npm run prettier:src && npm run prettier:tests",
"typedoc": "typedoc --out docs src",
"coverage": "nyc -r lcov -e .ts -x \"**/*.spec.ts\" npm run test"
},
"homepage": "https://github.com/acoustic-content-samples/content-delivery-js-sdk",
"pre-commit": [
"prettier",
"lint"
],
"repository": "[email protected]:acoustic-content-samples/content-delivery-js-sdk.git",
"author": "",
"license": "Apache-2.0",
"bug": {
"url": "https://github.com/acoustic-content-samples/content-delivery-js-sdk/issues"
},
"devDependencies": {
"@types/chai": "4.2.4",
"@types/chai-things": "0.0.34",
"@types/mocha": "^8.0.0",
"@types/node": "12.12.7",
"@types/sinon": "7.5.1",
"axios": "0.19.1",
"chai": "4.2.0",
"chai-sorted": "0.2.0",
"chai-things": "0.2.0",
"mocha": "^8.0.1",
"nyc": "15.0.0",
"pre-commit": "1.2.2",
"prettier": "1.18.2",
"sinon": "7.5.0",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "6.2.1",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typedoc": "0.16.9",
"typescript": "3.6.4",
"webpack": "4.41.2",
"webpack-cli": "3.3.9"
},
"engines": {
"node": ">= 10.16.0"
},
"peerDependencies": {
"axios": "0.19.1"
},
"dependencies": {},
"private": false
}