-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "js-crdt",
"version": "1.7.1",
"description": "CRDT Conflict-free Replication Data Type",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "tsc && mocha",
"build": "./node_modules/.bin/tsc",
"postbuild": "./node_modules/.bin/tsc -d",
"browserify": "./node_modules/.bin/browserify --standalone crdt build/index.js > dist/crdt.js",
"uglifyjs": "./node_modules/.bin/uglifyjs --screw-ie8 --compress -o dist/crdt.min.js dist/crdt.js",
"predist": "npm run build",
"dist": "npm run browserify && npm run uglifyjs",
"lint": "tslint src/**/*.ts",
"fix": "tslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/widmogrod/js-crdt.git"
},
"keywords": [
"CRDT",
"convergent types",
"data structures",
"collaborative editing"
],
"author": "Gabriel Habryn",
"license": "MIT",
"bugs": {
"url": "https://github.com/widmogrod/js-crdt/issues"
},
"homepage": "https://github.com/widmogrod/js-crdt#readme",
"devDependencies": {
"babel-eslint": "^7.2.3",
"browserify": "^13.0.1",
"mocha": "^3.5.3",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tsutils": "^2.8.2",
"typescript": "^2.5.2",
"uglify-es": "^3.1.0",
"uglify-js": "^2.6.4"
},
"dependencies": {}
}