-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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": "ot-json1",
"version": "1.0.1",
"description": "JSON OT type",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"ot-text-unicode": "4"
},
"devDependencies": {
"@types/node": "^14.0.13",
"mocha": "^7.1.1",
"ot-fuzzer": "1.3",
"ot-simple": "^1.0.0",
"terser": "^4.6.7",
"typescript": "^3.9.5"
},
"scripts": {
"test": "mocha test/cursor.js test/test.js test/immutable.js",
"fuzzer": "node test/fuzzer.js",
"prepare": "rm -rf dist && npx tsc && terser -d process.env.JSON1_RELEASE_MODE=true -c pure_funcs=log,keep_fargs=false,passes=2 -b --source-map url -o dist/json1.release.js -- dist/json1.js"
},
"mocha": {
"checkLeaks": true,
"reporter": "spec"
},
"files": [
"dist/",
"lib/",
"test/genOp.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/josephg/json1.git"
},
"keywords": [
"ot",
"json"
],
"author": "Joseph Gentle <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/josephg/json1/issues"
},
"homepage": "https://github.com/josephg/json1#readme"
}