-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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": "cofx",
"version": "2.2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"description": "declarative side-effects for the browser and node",
"author": "Eric Bower",
"repository": {
"type": "git",
"url": "git+https://github.com/neurosnap/cofx.git"
},
"scripts": {
"build": "tsc",
"test": "tsc --noEmit && yarn tape",
"prepublish": "yarn build",
"tape": "tape -r ts-node/register --project ./tsconfig.test.json ./test/*.ts | tap-dot",
"tape:dev": "tape -r ts-node/register --project ./tsconfig.test.json ./test/*.ts",
"precommit": "lint-staged",
"prettier": "prettier --write {src,test}/*.{js,ts}"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@types/mz": "^2.7.2",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.7",
"@types/tape": "^4.13.0",
"gen-tester": "^4.0.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"mz": "^2.7.0",
"nock": "^13.0.5",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"tap-dot": "^2.0.0",
"tape": "^5.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {}
}