-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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": "koan-chunked",
"version": "1.0.0",
"description": "Helper functions to create and apply chunks",
"main": "./dist/chunked.js",
"scripts": {
"build": "tsc",
"lint-dev": "eslint ./src/*.ts",
"lint": "eslint ./src/*.ts --quiet",
"test": "ts-mocha tests/**/*.test.ts"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deeheber/koan-chunked.git"
},
"keywords": [
"koan",
"chunked",
"chunk"
],
"author": "Danielle Heberling",
"license": "ISC",
"bugs": {
"url": "https://github.com/deeheber/koan-chunked/issues"
},
"homepage": "https://github.com/deeheber/koan-chunked#readme",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/lodash": "^4.14.176",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chai": "^4.3.4",
"eslint": "^8.1.0",
"mocha": "^9.1.3",
"sinon": "^11.1.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"lodash": "^4.17.21"
}
}