animarte
Version:
Making the digital world a little more animated place
74 lines (73 loc) • 2.19 kB
JSON
{
"name": "animarte",
"version": "3.0.0",
"description": "Making the digital world a little more animated place",
"type": "module",
"author": "lucasmc64",
"license": "GPL-3.0-only",
"homepage": "https://animarte.lucasmc64.dev/",
"repository": "gitlab:lucasmc64/animarte",
"main": "./animarte.js",
"module": "./animarte.mjs",
"types": "./animarte.d.ts",
"exports": {
".": {
"types": "./animarte.d.ts",
"import": "./animarte.mjs"
},
"./animarte.css": {
"import": "./animarte.css"
},
"./animations/*/*": {
"import": "./animations/*/*.css"
}
},
"keywords": [
"loading",
"animation",
"ui",
"ux",
"motion",
"web",
"no-dependency",
"css",
"keyframes",
"animate",
"animarte",
"loader",
"spinner"
],
"scripts": {
"prestart": "npm run build",
"start": "gulp watchAll & live-server --port=5645 --no-browser --ignore=\"$(pwd)/src/sass/**/*.scss,$(pwd)/src/tests/**/*.test.ts,$(pwd)/src/tests/*.ts\"",
"build": "rm -rf dist && gulp compileAll && ./node_modules/.bin/dts-bundle-generator -o ./dist/animarte.d.ts ./src/index.ts && cat ./package.json | grep -v '\"private\":' > dist/package.json && \\cp LICENSE dist && \\cp README.md dist",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^5.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.0",
"sass": "^1.77.8",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack-stream": "^7.0.0"
}
}