-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
50
{
"name": "luciascript",
"version": "0.1.1",
"description": "Hastscript-like utility to create HTML strings",
"main": "dist/index.min.cjs",
"repository": "https://github.com/lucialand/luciascript.git",
"author": "shadowtime2000 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"rollup": "^2.33.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typedoc": "^0.19.2",
"typescript": "^4.1.2"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"format": "prettier --write .",
"build": "yarn build:src && yarn build:docs",
"prepublishOnly": "rollup -c",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"build:src": "rollup -c",
"build:docs": "typedoc"
},
"sideEffects": false,
"module": "dist/index.es.min.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"browser": "dist/index.umd.min.js",
"exports": {
"node": "./dist/index.min.cjs",
"import": "./dist/index.es.min.js",
"require": "./dist/index.min.cjs"
}
}