-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 KB
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
{
"name": "@chrontime/chrontime",
"version": "0.1.0",
"description": "Chron Time Module",
"main": "lib/index.js",
"author": "Randall Knutson <randall@knutson.io>",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"start": "node -r ts-node/register index.ts",
"test": "mocha --require ts-node/register --reporter spec './{,!(node_modules)/**/}*.test.ts'",
"watch": "tsc -w",
"build": "tsc",
"lint": "eslint ./src --ext .js,.ts --fix",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"chai": "^4.3.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.6.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}