Choices/package.json

58 lines
2 KiB
JSON
Raw Normal View History

2016-03-15 23:42:10 +01:00
{
"name": "choices",
"version": "1.0.0",
"description": "A vanilla JS customisable select box plugin",
"main": "index.js",
"scripts": {
"start": "node server.js",
"lint": "eslint ./assets/scripts/src",
"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",
"css:sass": "node-sass --include-path scss assets/styles/scss/*.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/",
"css:min": "csso assets/styles/css/choices.css assets/styles/css/choices.min.css",
2016-03-15 23:42:10 +01:00
"js:build": "webpack --config webpack.config.prod.js",
"js:test": "./node_modules/karma/bin/karma start --single-run --no-auto-watch tests/karma.config.js",
"js:test_watch": "./node_modules/karma/bin/karma start --auto-watch --no-single-run tests/karma.config.js"
},
"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",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"csso": "^1.7.0",
"eslint": "^2.4.0",
2016-05-03 15:55:38 +02:00
"fuse.js": "^2.2.0",
2016-07-02 14:04:38 +02:00
"jasmine-core": "^2.4.1",
"karma": "^1.1.0",
"karma-coverage": "^1.0.0",
2016-07-02 14:50:24 +02:00
"karma-es6-shim": "^1.0.0",
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",
"sifter": "^0.4.5",
2016-03-15 23:42:10 +01:00
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
2016-03-30 16:04:21 +02:00
},
"dependencies": {
"redux": "^3.3.1"
2016-03-15 23:42:10 +01:00
}
}