-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "@reuters-graphics/teams-klaxon",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": "https://github.com/reuters-graphics/teams-klaxon",
"author": "Jon McClure <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [],
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepublishOnly": "yarn test",
"build": "rimraf ./dist && rollup -c rollup.config.js",
"build:docs": "typedoc",
"preview:docs": "live-server ./docs",
"test": "yarn build && mocha",
"test:demo": "yarn build && DEMO_TESTS=1 mocha"
},
"devDependencies": {
"@reuters-graphics/eslint-config": "^0.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@tsconfig/recommended": "^1.0.2",
"@types/axios": "^0.14.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"dotenv": "^16.0.3",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"expect.js": "^0.3.1",
"lefthook": "^1.2.9",
"live-server": "1.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"rollup": "^3.17.0",
"rollup-plugin-dts": "^5.2.0",
"tslib": "^2.5.0",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.3.3",
"emoji-strip": "^1.0.1"
}
}