-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.49 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": "mute-structs",
"version": "2.0.5",
"description": "NodeJS module providing an implementation of the LogootSplit CRDT algorithm",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"es2015": "dist/es2015/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/coast-team/mute-structs"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/node": "^11.15.2",
"ava": "^2.4.0",
"husky": "^3.1.0",
"standard-version": "^7.0.1",
"tslint": "^5.11",
"tslint-eslint-rules": "^5.4",
"typescript": "^3.6.4"
},
"scripts": {
"prebuild": "npm run lint && npm run clean",
"build": "tsc -b tsconfig.main.json tsconfig.module.json tsconfig.es2015.json tsconfig.types.json",
"build:test": "tsc",
"clean": "rm -rf dist .tested",
"check": "tsc --noEmit",
"lint": "tslint --project tsconfig.json",
"release": "standard-version",
"pretest": "npm run lint && npm run build:test",
"test": "ava"
},
"ava": {
"files": [
".tested/test/**/*.test.js"
],
"source": [
"test"
]
},
"keywords": [
"crdt",
"ropes",
"data-structures"
],
"author": "Matthieu Nicolas <[email protected]> ",
"contributors": [
"Victorien Elvinger <[email protected]>",
"Gerald Oster <[email protected]>"
],
"license": "AGPL-3.0"
}