@litexa/core
Version:
Litexa, a programming language for writing Alexa skills
33 lines (32 loc) • 981 B
JSON
{
"name": "{name}",
"version": "1.0.0",
"scripts": {
"clean": "npx rimraf node_modules litexa/main.min.js && npm install",
"compile": "npx webpack --config webpack.config.js",
"compile:watch": "npx webpack --config webpack.config.js --watch",
"deploy": "npm run compile && litexa deploy",
"test": "npx mocha './test/**/*.spec.coffee' && npm run test:litexa",
"test:file": "npx ",
"test:litexa": "npm run compile && litexa test",
"test:litexa:watch": "npm run compile:watch | litexa test -w",
"test:watch": "npx mocha './test/**/*.spec.coffee' --watch"
},
"author": "Amazon",
"devDependencies": {
"chai": "4.2.0",
"coffee-loader": "0.9.0",
"coffeescript": "^2.5.0",
"eslint": "6.8.0",
"mocha": "7.0.0",
"sinon": "8.1.0",
"source-map-support": "0.5.16",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
},
"dependencies": {
"pino": "5.16.0",
"pino-pretty": "3.5.0"
},
"license": "ISC"
}