Choices/package.json

75 lines
2.7 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",
2016-10-22 22:04:56 +02:00
"version": "2.4.0",
2016-07-11 10:46:48 +02:00
"description": "A vanilla JS customisable text input/select box plugin",
"main": "./assets/scripts/dist/choices.min.js",
2016-03-15 23:42:10 +01:00
"scripts": {
"start": "node server.js",
"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",
2016-10-18 19:52:48 +02:00
"css:sass": "node-sass --output-style expanded --include-path scss assets/styles/scss/base.scss assets/styles/css/base.css && node-sass --output-style expanded --include-path scss assets/styles/scss/choices.scss assets/styles/css/choices.css",
2016-03-15 23:42:10 +01:00
"css:prefix": "postcss --use autoprefixer -b 'last 2 versions' assets/styles/css/*.css -d assets/styles/css/",
2016-07-11 10:46:48 +02:00
"css:min": "csso assets/styles/css/base.css assets/styles/css/base.min.css && csso assets/styles/css/choices.css assets/styles/css/choices.min.css",
2016-08-23 08:24:55 +02:00
"js:build": "webpack --minimize --config webpack.config.prod.js && webpack --config webpack.config.prod.js",
2016-03-15 23:42:10 +01:00
"js:test": "./node_modules/karma/bin/karma start --single-run --no-auto-watch tests/karma.config.js",
2016-10-02 17:43:00 +02:00
"js:test:watch": "./node_modules/karma/bin/karma start --auto-watch --no-single-run tests/karma.config.js"
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",
"babel-core": "^6.7.2",
2016-08-14 23:14:37 +02:00
"babel-eslint": "^6.1.2",
2016-03-15 23:42:10 +01:00
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
2016-08-14 23:14:37 +02:00
"csso": "^1.8.2",
2016-07-15 00:21:28 +02:00
"es6-promise": "^3.2.1",
2016-08-14 23:14:37 +02:00
"eslint": "^3.3.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.13.0",
2016-10-02 17:43:31 +02:00
"eslint-plugin-jsx-a11y": "^2.2.2",
2016-08-14 23:14:37 +02:00
"eslint-plugin-react": "^6.1.0",
2016-09-04 15:11:07 +02:00
"jasmine-core": "2.4.1",
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",
2016-03-15 23:42:10 +01:00
"node-sass": "^3.4.2",
"nodemon": "^1.9.1",
"opn-cli": "^3.1.0",
"postcss-cli": "^2.5.1",
"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-08-12 16:51:31 +02:00
"whatwg-fetch": "^1.0.0",
"wrapper-webpack-plugin": "^0.1.7"
2016-03-30 16:04:21 +02:00
},
"dependencies": {
2016-08-14 23:14:37 +02:00
"redux": "^3.3.1",
2016-10-02 17:43:31 +02:00
"fuse.js": "^2.2.2"
2016-09-06 19:12:50 +02:00
},
"npmName": "choices.js",
2016-09-15 22:04:15 +02:00
"npmFileMap": [{
"basePath": "assets",
"files": [
"scripts/dist/*",
"styles/css/*",
"icons/*"
]
}]
2016-09-24 11:54:03 +02:00
}