-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
42
43
44
45
46
47
48
49
{
"name": "pkg_name",
"type": "module",
"version": "0.0.0",
"description": "Capture text fragments based on regular expressions that are executed for each line of the text",
"main": "./module.cjs",
"module": "./src/module.js",
"types": "./module.d.ts",
"exports": {
".": {
"import": "./src/module.js",
"require": "./module.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"types": "tsc",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "ava",
"prepare": "npm run test && npm run build && npm run types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UpperCod/pkg_name.git"
},
"author": "UpperCod",
"license": "ISC",
"bugs": {
"url": "https://github.com/UpperCod/pkg_name/issues"
},
"homepage": "https://github.com/UpperCod/pkg_name#readme",
"devDependencies": {
"ava": "^3.10.1",
"rollup": "^2.21.0",
"typescript": "^4.2.4"
},
"ava": {
"files": [
"tests/**/*.test.js"
]
},
"prettier": {
"tabWidth": 4,
"singleQuote": false
}
}