This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.04 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
72
73
74
75
76
{
"name": "exported-tests",
"version": "0.0.0",
"bugs": "https://github.com/IBM/exported-tests/issues",
"homepage": "https://github.com/IBM/exported-tests#project-overview",
"author": "IBM Watson Health Pattern & Asset Library (https://github.com/orgs/IBM/teams/whpal/members)",
"repository": {
"type": "git",
"url": "[email protected]:IBM/exported-tests.git"
},
"license": "Apache-2.0",
"description": "IBM's Watson Health Design Pattern & Assets Library Exported Tests architecture",
"engines": {
"node": "^12"
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"browser": "dist/umd/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*",
"index.js",
"es5.js",
"es5.js.map"
],
"source": true,
"scripts": {
"ts": "tsc --outDir ./dist/es --declaration --declarationDir ./dist/types",
"test": "mocha",
"build": "yarn ts && rollup -c",
"lint": "eslint \"**/*.ts\""
},
"dependencies": {
"@types/jsdom": "16.2.3"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-function-bind": "7.8.3",
"@babel/plugin-syntax-object-rest-spread": "7.8.3",
"@babel/preset-env": "7.9.6",
"@babel/register": "7.9.0",
"@rollup/plugin-babel": "5.0.0",
"@types/chai": "4.2.11",
"@types/lodash": "4.14.151",
"@types/mocha": "7.0.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"bufferutil": "4.0.1",
"canvas": "2.6.1",
"chai": "4.2.0",
"eslint": "7.0.0",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"lodash": "4.17.19",
"mocha": "7.1.2",
"rollup": "2.9.1",
"rollup-plugin-terser": "5.3.0",
"semantic-release": "17.0.8",
"ts-node": "8.10.1",
"typescript": "3.9.2",
"utf-8-validate": "5.0.2"
},
"mocha": {
"spec": "src/**/tests/*.ts",
"require": "env/setup-test-env.js"
},
"release": {
"branches": [
{
"name": "stable",
"channel": "latest"
}
]
}
}