generated from codibre/boilerplate-base
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.69 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
80
{
"name": "augmentative-iterable",
"description": "This project is just a template for creation of new projects",
"version": "1.6.0",
"private": false,
"author": {
"name": "Thiago O Santos <tos.oliveira@gmail.com>"
},
"engines": {
"node": ">=10"
},
"files": [
"index.js",
"lib",
"index.d.ts"
],
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"format": "prettier --write src/**/*.ts tst/**/*.ts",
"lint": "npm run lint:format && npm run lint:style",
"lint:fix": "npm run lint:format:fix && npm run lint:style:fix",
"test": "mocha",
"test:coverage": "nyc npm test",
"test:benchmark": "node --expose-gc test/benchmark/index.js",
"prepublishOnly": "npm run test:coverage",
"preversion": "npm run test:coverage",
"version": "scripts/prepare $npm_package_version && git add .",
"postversion": "git push && git push --tags",
"clear:modules": "del-cli ./node_modules",
"preaction:verify:update-modules": "npm run action:verify:update-modules:check",
"action:verify:update-modules": "npm run action:verify:update-modules:reinstall && npm run action:verify:update-modules:clean",
"action:verify:update-modules:clean": "del-cli .check",
"lint:format": "prettier --check '{src,test}/**/*.ts'",
"lint:format:fix": "prettier --write '{src,test}/**/*.ts'",
"lint:style": "eslint index.js 'lib/*.js' '**/*.ts'",
"lint:style:fix": "eslint index.js 'lib/*.js' '**/*.ts' --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codibre/augmentative-iterable.git"
},
"homepage": "https://github.com/codibre/augmentative-iterable#readme",
"bugs": {
"url": "https://github.com/codibre/augmentative-iterable/issues"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@codibre/confs": "1.1.0",
"@types/benchmark": "^2.1.5",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"benchmark": "^2.1.4",
"chai": "^4.3.4",
"chai-callslike": "^1.2.6",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"expect": "^26.6.2",
"husky": "^6.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"sinon-chai-calls-assertion": "^2.3.1",
"ts-node": "^9.1.1",
"typedoc": "^0.22.17",
"typedoc-plugin-markdown": "^3.7.2",
"typescript": "4.2.4"
}
}