mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
77 lines
2.4 KiB
JSON
77 lines
2.4 KiB
JSON
{
|
|
"name": "smalltalk",
|
|
"version": "2.5.0",
|
|
"description": "Promise-based Alert, Confirm and Prompt replacement",
|
|
"homepage": "http://github.com/coderaiser/smalltalk",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/coderaiser/smalltalk.git"
|
|
},
|
|
"main": "lib/smalltalk.js",
|
|
"babel": {
|
|
"presets": [
|
|
"es2015"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"watch": "nodemon --watch lib --watch test --exec",
|
|
"watch:client": "redrun compile:client -- --watch",
|
|
"watch:test": "npm run watch -- npm test",
|
|
"watch:lint": "npm run watch -- 'npm run lint'",
|
|
"watch:lint:js": "npm run watch -- \"run lint:js\"",
|
|
"watch:coverage": "redrun watch -- redrun coverage",
|
|
"coverage": "nyc npm test",
|
|
"report": "nyc report --reporter=text-lcov | coveralls",
|
|
"compile:server": "babel -d legacy lib",
|
|
"compile:client": "webpack --progress",
|
|
"compile:client:poly": "BUILD_TYPE=poly webpack --progress",
|
|
"build": "redrun clean build:js build:css",
|
|
"build:js": "redrun compile:* legacy:index",
|
|
"build:css": "postcss css/*.css -o dist/smalltalk.min.css -m --use autoprefixer postcss-clean",
|
|
"legacy:index": "echo \"module.exports = require('./smalltalk');\" > legacy/index.js",
|
|
"clean": "rimraf dist",
|
|
"wisdom": "npm run build",
|
|
"lint:css": "stylelint css/*.css",
|
|
"lint:js": "jshint lib test && jscs lib test && eslint lib test webpack.config.js",
|
|
"lint": "redrun lint:*",
|
|
"test": "tape 'test/**/*.js'"
|
|
},
|
|
"keywords": [
|
|
"modal",
|
|
"alert",
|
|
"confirm",
|
|
"prompt"
|
|
],
|
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (http://coderaiser.github.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/coderaiser/smalltalk/issues"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^7.0.1",
|
|
"babel-cli": "^6.1.1",
|
|
"babel-loader": "^7.0.0",
|
|
"babel-preset-env": "^1.6.0",
|
|
"coveralls": "^3.0.0",
|
|
"eslint": "^4.0.0",
|
|
"jscs": "^3.0.3",
|
|
"jshint": "^2.8.0",
|
|
"nodemon": "^1.9.2",
|
|
"nyc": "^11.0.2",
|
|
"postcss-clean": "^1.0.2",
|
|
"postcss-cli": "^4.0.0",
|
|
"redrun": "^5.0.1",
|
|
"rimraf": "^2.5.3",
|
|
"sinon": "^4.0.0",
|
|
"stylelint": "^8.0.0",
|
|
"stylelint-config-standard": "^17.0.0",
|
|
"systemjs": "^0.20.2",
|
|
"tape": "^4.6.0",
|
|
"webpack": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"currify": "^2.0.3",
|
|
"es6-promise": "^4.1.1",
|
|
"fullstore": "^1.0.0"
|
|
}
|
|
}
|