-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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": "ticktock",
"version": "1.0.0",
"description": "A small, customizable TypeScript countdown with zero dependencies.",
"main": "/dist/cjs/main.js",
"module": "/dist/esm/main.js",
"exports": {
".": {
"import": "./dist/esm/main.js",
"require": "./dist/cjs/main.js"
}
},
"directories": {
"test": "./spec",
"lib": "./src/lib"
},
"files": [
"/dist"
],
"scripts": {
"sass-dev": "sass --watch --update --style=expanded sass:dist",
"sass-prod": "rimraf dist/**/*.css && rimraf dist/**/*.css.map && sass --no-source-map --style=compressed sass:dist",
"test": "node --experimental-vm-modules node/jest/bin/jest.js --verbose --coverage --coverageDirectory=./coverage ./spec",
"test:watch": "node --experimental-vm-modules node/jest/bin/jest.js --watch --verbose ./spec",
"build": "rimraf dist/**/*.js && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./scripts/fixtypes",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/bjf5201/ticktock.git"
},
"devDependencies": {
"@types/jest": "29.5.13",
"@types/node": "22.7.5",
"cz-conventional-changelog": "3.3.0",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"rimraf": "6.0.1",
"sass": "1.79.5",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.2"
},
"packageManager": "npm@6.14.13",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}