-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "flexel",
"version": "0.7.3",
"description": "Create specialized data structures from level, just like sublevel.",
"main": "index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist/** ./coverage ./temp",
"build": "tsc",
"watch": "concurrently npm:watch:*",
"watch:build": "tsc --watch",
"watch:test": "ava --watch",
"test": "tsc && nyc --color -a ava -v && rimraf ./temp",
"debug": "tsc && node ./dist/debug",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"preversion": "npm test",
"version": "git add -A",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JimmyBoh/flexel.git"
},
"author": "Jim Buck <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JimmyBoh/flexel/issues"
},
"homepage": "https://github.com/JimmyBoh/flexel#readme",
"devDependencies": {
"@types/debug": "0.0.31",
"@types/encoding-down": "^5.0.0",
"@types/memdown": "^3.0.0",
"@types/node": "^10.12.2",
"ava": "^0.25.0",
"concurrently": "^4.0.1",
"coveralls": "^3.0.2",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/jsonquery": "^0.1.0",
"@types/leveldown": "^4.0.0",
"@types/levelup": "3.1.0",
"debug": "^4.1.0",
"encoding-down": "^5.0.4",
"jsonquery-engine": "^1.0.2",
"level": "^4.0.0",
"level-queryengine": "^3.0.1",
"memdown": "^3.0.0",
"stream-each": "^1.2.3",
"stream-to-array": "^2.3.0",
"subleveldown": "^3.0.1"
},
"ava": {
"files": [
"./dist/**/*.spec.js"
],
"source": [
"./dist/**/*.js"
]
},
"nyc": {
"cache": true,
"reporter": [
"lcov",
"text"
],
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/**/*.spec.js",
"dist/debug.js",
"dist/models.js"
]
}
}