-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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": "@nextcss/template-module",
"version": "0.1.0",
"description": "",
"keywords": [],
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Zsolt Tovis",
"email": "[email protected]",
"url": "https://toviszsolt.github.io/"
},
"funding": "https://github.com/sponsors/toviszsolt",
"repository": {
"type": "git",
"url": "https://github.com/nextcss/template-module"
},
"bugs": {
"url": "https://github.com/nextcss/template-module/issues"
},
"homepage": "https://github.com/nextcss/template-module",
"scripts": {
"watch": "rollup -c -w",
"build": "jest --verbose && rollup -c",
"test": "jest --watch",
"coverage": "jest --collect-coverage"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"jest": "^29.3.1",
"rollup": "^3.2.5",
"rollup-plugin-terser": "^7.0.2"
}
}