-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "nonplain",
"version": "0.1.0",
"description": "Plaintext files, with metadata",
"homepage": "https://github.com/nonplain/nonplain.js#readme",
"repository": "github:nonplain/nonplain.js",
"author": "Jared Gorski <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "yarn build && jest",
"test:coverage": "yarn test --coverage",
"test:coverage:web": "yarn test:coverage && open ./coverage/lcov-report/index.html",
"lint": "eslint src --ext .ts",
"lint:fix": "yarn lint --fix",
"pub": "yarn test && yarn publish && git push origin master"
},
"dependencies": {
"glob": "^7.1.6",
"js-yaml": "^3.14.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}