simple2k13
Version:
some simple functions
85 lines (84 loc) • 2.66 kB
JSON
{
"name": "simple2k13",
"version": "1.2.2",
"description": "some simple functions",
"main": "dist/simple.min.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:staged": "jest --bail --findRelatedTests",
"start": "webpack-dev-server --env development --node-env development",
"build": "webpack --env production --node-env production --progress && tsc",
"prepare": "is-ci || husky install",
"lint": "eslint ./src --ext .js,.tsx,.ts",
"lint:fix": "eslint ./src --ext .js,.tsx,.ts --fix",
"lint:staged": "lint-staged",
"publish:major": "npm run lint:staged && npm version major && npm run build && npm publish",
"publish:minor": "npm run lint:staged && npm version minor && npm run build && npm publish",
"publish:patch": "npm run lint:staged && npm version patch && npm run build && npm publish",
"publish:prerelease": "npm run lint:staged && npm version prerelease && npm run build && npm publish"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "https://github.com/npm-for-cw/simple2k13"
},
"keywords": [
"functions",
"simple",
"simple2k13",
"js",
"cw"
],
"author": "cw<cw2k13as@gmail.com>",
"license": "LGPL-3.0",
"homepage": "https://github.com/npm-for-cw/simple2k13",
"files": [
"/dist",
"example"
],
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^28.1.3",
"@types/node": "^18.7.2",
"@types/webpack": "^5.81.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.36.2",
"babel-jest": "^28.1.3",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"fake-indexeddb": "^4.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"text-encoding": "^0.7.0",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {}
}