-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "@structure-codes/is-nondot",
"version": "1.1.2",
"description": "A library to test if a filename is considered a to be a standard non-dotted dotfile",
"main": "dist/cjs/nondot.js",
"module": "dist/esm/nondot.js",
"exports": {
"require": "./dist/cjs/nondot.js",
"import": "./dist/esm/nondot.js"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -w -c rollup.config.js",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/structure-codes/is-nondot.git"
},
"author": "structure-codes",
"license": "MIT",
"bugs": {
"url": "https://github.com/structure-codes/is-nondot/issues"
},
"homepage": "https://github.com/structure-codes/is-nondot#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"rollup": "^2.59.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}