forked from automerge/automerge-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.13 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "automerge",
"version": "1.0.1-preview.7",
"description": "Data structures for building collaborative applications",
"main": "src/automerge.js",
"browser": "dist/automerge.js",
"types": "@types/automerge/index.d.ts",
"scripts": {
"browsertest": "karma start",
"coverage": "nyc --reporter=html --reporter=text mocha",
"test": "mocha",
"testwasm": "mocha --file test/wasm.js",
"build": "webpack && copyfiles --flat @types/automerge/index.d.ts dist",
"prepublishOnly": "npm run-script build",
"lint": "eslint ."
},
"author": "",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/automerge/automerge.git"
},
"bugs": {
"url": "https://github.com/automerge/automerge/issues"
},
"homepage": "https://github.com/automerge/automerge",
"license": "MIT",
"files": [
"/src/**",
"/frontend/**",
"/backend/**",
"/test/**",
"/@types/**",
"/dist/**",
"/img/**",
"/*.md",
"/LICENSE",
"/.babelrc",
"/.eslintrc.json",
"/.mocharc.yaml",
"/karma.*.js",
"/tsconfig.json",
"/webpack.config.js"
],
"dependencies": {
"fast-sha256": "^1.3.0",
"pako": "^2.0.3",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"copyfiles": "^2.4.1",
"eslint": "^7.24.0",
"eslint-plugin-compat": "^3.9.0",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.5",
"karma-typescript": "^5.4.0",
"karma-webpack": "^5.0.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5",
"watchify": "^4.0.0",
"webpack": "^5.24.0",
"webpack-cli": "^4.5.0"
},
"resolutions": {
"karma-sauce-launcher/selenium-webdriver": "4.0.0-alpha.7"
},
"browserslist": {
"production": [
"defaults",
"not IE 11",
"maintained node versions"
],
"web": [
"defaults",
"not IE 11"
]
}
}