-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "ottypes",
"version": "0.0.1",
"author": "Blake Thomson <[email protected]>",
"description": "Basic, composable ottypes conforming to the sharejs spec",
"homepage": "https://github.com/thomsbg/ottypes",
"license": "MIT",
"main": "lib/index.js",
"module": "src/index.js",
"devDependencies": {
"@thomsbg/ot-fuzzer": "^2.0.3",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"tape": "^4.6.3"
},
"scripts": {
"test": "tape -r babel-register",
"prepare": "babel -d lib src",
"watch": "babel -w -d lib src"
},
"repository": {
"type": "git",
"url": "https://github.com/thomsbg/ottypes.git"
},
"bugs": {
"url": "https://github.com/thomsbg/ottypes/issues"
},
"keywords": [
"ottypes",
"operational",
"transformation"
],
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6.0.0",
"browsers": "last 2 versions"
},
"useBuiltIns": true
}
]
]
}
}