Files
cunningham/packages/tokens/package.json
Nathan Vasse 2876d29025 (tokens) add JS generator and re-organize the repo
Added JsGenerator which to implied to reorganize a bit the
repo in order to extract generator-specific test into specific
standalone files.
2023-01-11 11:01:56 +01:00

45 lines
1.1 KiB
JSON

{
"name": "@openfun/cunningham-tokens",
"private": false,
"version": "0.0.0",
"license": "MIT",
"bin": {
"cunningham": "dist/bin/Main.js"
},
"exports": {
"./default-tokens": "./dist/cunningham-tokens.css"
},
"files": [
"dist/"
],
"scripts": {
"lint": "eslint . 'src/**/*.{ts,tsx}'",
"dev": "nodemon --watch 'src/bin' --ext '*' --exec 'yarn build'",
"build": "tsc -p tsconfig.json && tsc-alias && cp src/bin/cunningham.dist.js dist/bin && chmod +x dist/bin/Main.js && yarn build-default-theme",
"build-default-theme": "./dist/bin/Main.js -o dist -s html -g css,js",
"test": "FORCE_COLOR=1 jest --verbose src/bin"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "9.4.1",
"deepmerge": "4.2.2",
"figlet": "1.5.2",
"tsc-alias": "^1.8.2"
},
"devDependencies": {
"@types/figlet": "1.5.5",
"@types/jest": "29.2.4",
"@types/node": "18.11.18",
"eslint-config-custom": "*",
"jest": "29.3.1",
"nodemon": "2.0.20",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"engines": {
"node": ">=16.0.0"
}
}