-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 920 Bytes
/
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
{
"name": "ot-diff",
"version": "1.1.1",
"description": "A simple diff library for implementing operational transformations in JS",
"main": "index.js",
"scripts": {
"test": "npm run compile; mocha dist/test",
"compile": "babel --presets es2015,stage-0 -d dist/ src/",
"benchmark": "npm run compile; node dist/benchmark/main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kieraneglin/ot-diff.git"
},
"keywords": [
"diff",
"ot",
"operation-transformation"
],
"author": "Kieran Eglin",
"license": "MIT",
"bugs": {
"url": "https://github.com/kieraneglin/ot-diff/issues"
},
"homepage": "https://github.com/kieraneglin/ot-diff#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"benchmark": "^2.1.4",
"chai": "^4.0.0",
"mocha": "^3.4.2"
}
}