forked from automerge/automerge-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "automerge",
"version": "0.14.2",
"description": "Data structures for building collaborative applications",
"main": "dist/automerge.js",
"types": "dist/index.d.ts",
"scripts": {
"browsertest": "karma start",
"test": "mocha",
"build": "webpack && copyfiles --flat @types/automerge/index.d.ts dist",
"prepublishOnly": "npm run-script build"
},
"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",
"dependencies": {
"immutable": "^3.8.2",
"transit-immutable-js": "^0.7.0",
"transit-js": "^0.8.861",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"browserify": "^16.5.0",
"copyfiles": "^2.2.0",
"jsverify": "^0.8.4",
"karma": "^4.4.1",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^2.0.2",
"karma-typescript": "^5.0.0",
"mocha": "^7.1.1",
"sinon": "^9.0.1",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3",
"watchify": "^3.11.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"resolutions": {
"karma-sauce-launcher/selenium-webdriver": "4.0.0-alpha.7"
}
}