-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.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
{
"name": "@ephox/dispute",
"version": "1.0.15-rc",
"description": "Basic typeclasses useful for comparison and testing: Eq, Show, Pprint",
"main": "./lib/main/ts/api/Main.js",
"module": "./lib/main/ts/api/Main.js",
"scripts": {
"prepublishOnly": "tsc",
"lint": "eslint 'src/**/*.ts'",
"build": "tsc",
"test": "yarn build && yarn mocha"
},
"author": "Ephox Corporation",
"license": "Apache-2.0",
"private": false,
"dependencies": {
"tslib": "^2.0.0"
},
"type": "module",
"devDependencies": {
"@tinymce/beehive-flow": "^0.19.0",
"@tinymce/eslint-plugin": "^2.2.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^8.2.3",
"chai": "^4.3.6",
"esm": "^3.2.25",
"fast-check": "^2.0.0",
"mocha": "^8.4.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"source-map-support": "^0.5.21",
"ts-node": "^8.4.1",
"typescript": "^4.8.2"
},
"files": [
"lib/**",
"src/**"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}