Choices/package.json

125 lines
3.8 KiB
JSON
Raw Normal View History

2016-03-15 23:42:10 +01:00
{
2016-07-11 11:29:42 +02:00
"name": "choices.js",
"version": "7.1.5",
2016-07-11 10:46:48 +02:00
"description": "A vanilla JS customisable text input/select box plugin",
"main": "./public/assets/scripts/choices.js",
2017-11-29 10:14:37 +01:00
"types": "./types/index.d.ts",
2016-03-15 23:42:10 +01:00
"scripts": {
2018-10-13 13:18:02 +02:00
"start": "run-p js:watch css:watch",
"build": "run-p js:build css:build",
"lint": "eslint src/scripts",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text --reporter=text-summary mocha",
"bundlesize": "bundlesize",
2018-10-10 22:00:32 +02:00
"cypress:run": "$(npm bin)/cypress run",
"cypress:open": "$(npm bin)/cypress open",
"cypress:ci": "cypress run --record --group --ci-build-id $GITHUB_SHA",
"test": "run-s test:unit test:e2e",
"test:unit": "NODE_ENV=test mocha",
"test:unit:watch": "NODE_ENV=test mocha --watch --inspect=5556",
"test:e2e": "run-p --race start cypress:run",
2018-10-13 13:18:02 +02:00
"js:watch": "NODE_ENV=development node server.js",
"js:build": "webpack --config webpack.config.prod.js",
2016-03-15 23:42:10 +01:00
"css:watch": "nodemon -e scss -x \"npm run css:build\"",
"css:build": "run-s css:sass css:prefix css:min",
"css:sass": "node-sass --output-style expanded --include-path scss src/styles/base.scss public/assets/styles/base.css && node-sass --output-style expanded --include-path scss src/styles/choices.scss public/assets/styles/choices.css",
"css:prefix": "postcss public/assets/styles/*.css --use autoprefixer --no-map --env prod --dir public/assets/styles",
"css:min": "csso public/assets/styles/base.css --output public/assets/styles/base.min.css && csso public/assets/styles/choices.css --output public/assets/styles/choices.min.css",
2018-10-30 20:22:01 +01:00
"deploy": "git subtree push --prefix public origin gh-pages",
"postversion": "git push --no-verify --atomic --follow-tags",
"prepublishOnly": "npm run build"
2016-03-15 23:42:10 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/jshjohnson/Choices.git"
},
"author": "Josh Johnson",
"license": "MIT",
"files": [
"public/assets/scripts",
"public/assets/styles",
"src",
"!src/**/*.test.js",
"types"
],
2016-03-15 23:42:10 +01:00
"bugs": {
"url": "https://github.com/jshjohnson/Choices/issues"
},
"homepage": "https://github.com/jshjohnson/Choices#readme",
2018-07-19 16:32:25 +02:00
"keywords": [
"customisable",
"input",
"select",
"vanilla",
"plugin",
"js"
],
2016-03-15 23:42:10 +01:00
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"autoprefixer": "^9.6.5",
"babel-loader": "^8.0.6",
"bundlesize": "^0.18.0",
"chai": "^4.2.0",
"csso-cli": "^3.0.0",
2019-10-24 08:50:00 +02:00
"cypress": "3.5.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-compat": "3.3.0",
"eslint-plugin-cypress": "^2.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.16.4",
"husky": "^3.0.9",
"jsdom": "^15.2.0",
"lint-staged": "^9.4.2",
"mocha": "^6.2.2",
"node-sass": "^4.12.0",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"postcss-cli": "^6.1.3",
"prettier": "^1.18.2",
"sinon": "^7.5.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
2016-03-30 16:04:21 +02:00
},
"dependencies": {
"deepmerge": "^4.2.0",
"fuse.js": "^3.4.5",
"redux": "^4.0.4"
2016-09-06 19:12:50 +02:00
},
"npmName": "choices.js",
2016-10-26 16:43:15 +02:00
"npmFileMap": [
{
"files": [
2018-10-28 11:51:47 +01:00
"public/assets/scripts/*",
"public/assets/styles/*",
"src/icons/*"
2016-10-26 16:43:15 +02:00
]
}
2017-07-24 16:18:43 +02:00
],
"nyc": {
"include": [
2018-05-28 18:56:36 +02:00
"src/scripts/**/**/*.js"
2017-07-24 16:18:43 +02:00
],
"exclude": [
2018-05-28 18:56:36 +02:00
"src/scripts/**/**/*.test.js"
2017-07-24 16:18:43 +02:00
]
},
"bundlesize": [
{
"path": "public/assets/scripts/choices.min.js",
"maxSize": "20 kB"
},
{
"path": "public/assets/styles/choices.min.css",
"maxSize": "1.8 kB"
}
]
2017-10-03 14:17:31 +02:00
}