Choices/package.json

99 lines
3.4 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",
2017-08-03 17:16:08 +02:00
"version": "3.0.2",
2016-07-11 10:46:48 +02:00
"description": "A vanilla JS customisable text input/select box plugin",
2017-07-24 16:18:43 +02:00
"main": "./src/scripts/dist/choices.min.js",
2017-09-05 20:22:25 +02:00
"types": "./index.d.ts",
2016-03-15 23:42:10 +01:00
"scripts": {
"start": "node server.js",
2017-08-14 14:39:07 +02:00
"lint": "eslint assets/**/*.js",
2017-07-11 19:34:37 +02:00
"test": "karma start --single-run --no-auto-watch tests/karma.config.js",
"test:watch": "karma start --auto-watch --no-single-run tests/karma.config.js",
2017-07-24 16:18:43 +02:00
"test:mocha": "nyc mocha --require ./config/test.js --compilers babel-core/register \"./src/**/**/**/**/*.spec.js\"",
2017-07-26 16:22:56 +02:00
"test:mocha:watch": "npm run test:mocha -- --watch",
2016-03-15 23:42:10 +01:00
"css:watch": "nodemon -e scss -x \"npm run css:build\"",
"css:build": "npm run css:sass -s && npm run css:prefix -s && npm run css:min -s",
2017-07-24 16:18:43 +02:00
"css:sass": "node-sass --output-style expanded --include-path scss src/styles/scss/base.scss src/styles/css/base.css && node-sass --output-style expanded --include-path scss src/styles/scss/choices.scss src/styles/css/choices.css",
"css:prefix": "postcss --use autoprefixer -b 'last 2 versions' src/styles/css/*.css -d src/styles/css/",
"css:min": "csso src/styles/css/base.css src/styles/css/base.min.css && csso src/styles/css/choices.css src/styles/css/choices.min.css",
2016-10-26 16:43:15 +02:00
"js:build": "concurrently --prefix-colors yellow,green \"webpack --minimize --config webpack.config.prod.js\" \"webpack --config webpack.config.prod.js\"",
2017-02-09 15:23:20 +01:00
"version": "node version.js --current $npm_package_version --new $npm_config_newVersion",
2017-07-19 19:48:46 +02:00
"postversion": "npm run js:build",
"dev": "dev"
2016-03-15 23:42:10 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/jshjohnson/Choices.git"
},
"author": "Josh Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/jshjohnson/Choices/issues"
},
"homepage": "https://github.com/jshjohnson/Choices#readme",
"devDependencies": {
"autoprefixer": "^6.3.3",
2017-07-24 16:18:43 +02:00
"babel-core": "^6.25.0",
2017-08-14 14:39:07 +02:00
"babel-eslint": "^7.2.3",
2016-03-15 23:42:10 +01:00
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
2017-07-24 16:18:43 +02:00
"chai": "^4.1.0",
2016-10-26 16:43:15 +02:00
"concurrently": "^3.1.0",
"core-js": "^2.4.1",
2016-08-14 23:14:37 +02:00
"csso": "^1.8.2",
2017-07-26 16:22:56 +02:00
"custom-event-autopolyfill": "^0.1.3",
2016-07-15 00:21:28 +02:00
"es6-promise": "^3.2.1",
2017-08-14 14:39:07 +02:00
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.1.0",
2016-08-14 23:14:37 +02:00
"eslint-loader": "^1.5.0",
2017-08-14 14:39:07 +02:00
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.1",
2016-09-04 15:11:07 +02:00
"jasmine-core": "2.4.1",
2017-07-24 16:18:43 +02:00
"jsdom": "^11.1.0",
2016-07-02 14:04:38 +02:00
"karma": "^1.1.0",
"karma-coverage": "^1.0.0",
2016-07-02 14:50:24 +02:00
"karma-es6-shim": "^1.0.0",
"karma-htmlfile-reporter": "^0.3.4",
2016-07-02 14:04:38 +02:00
"karma-jasmine": "^1.0.2",
2016-07-02 14:50:24 +02:00
"karma-phantomjs-launcher": "^1.0.1",
2016-07-02 14:04:38 +02:00
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
2017-07-24 16:18:43 +02:00
"mocha": "^3.4.2",
2017-05-11 16:29:01 +02:00
"node-sass": "^3.4.2",
2016-03-15 23:42:10 +01:00
"nodemon": "^1.9.1",
2017-07-24 16:18:43 +02:00
"nyc": "^11.0.3",
2016-03-15 23:42:10 +01:00
"opn-cli": "^3.1.0",
"postcss-cli": "^2.5.1",
2017-07-26 16:22:56 +02:00
"sinon": "^2.4.0",
2016-03-15 23:42:10 +01:00
"webpack": "^1.12.14",
2016-09-06 19:46:49 +02:00
"webpack-dashboard": "^0.1.8",
2016-07-15 00:21:28 +02:00
"webpack-dev-server": "^1.14.1",
2016-11-01 10:29:45 +01:00
"whatwg-fetch": "^1.0.0",
2016-08-12 16:51:31 +02:00
"wrapper-webpack-plugin": "^0.1.7"
2016-03-30 16:04:21 +02:00
},
"dependencies": {
"classnames": "^2.2.5",
"fuse.js": "^3.1.0",
"redux": "^3.3.1"
2016-09-06 19:12:50 +02:00
},
"npmName": "choices.js",
2016-10-26 16:43:15 +02:00
"npmFileMap": [
{
2017-07-24 16:18:43 +02:00
"basePath": "src",
2016-10-26 16:43:15 +02:00
"files": [
"scripts/dist/*",
"styles/css/*",
"icons/*"
]
}
2017-07-24 16:18:43 +02:00
],
"nyc": {
"include": [
"src/**/**/**/**/**/*.js"
],
"exclude": [
"src/**/**/**/**/**/*.spec.js"
]
}
2017-09-06 09:48:42 +02:00
}