wp-quickstart-caller-example
Version:
Usage of webpack-typescript-lib-quickstart.
56 lines (55 loc) • 1.87 kB
JSON
{
"name": "wp-quickstart-caller-example",
"version": "0.1.4",
"description": "Usage of webpack-typescript-lib-quickstart.",
"keywords": [
"Quickstart",
"Webpack",
"Webpack2",
"Node",
"TypeScript",
"Library",
"SCSS",
"PostCSS",
"CI",
"scaffolding",
"Getting started",
"Starter"
],
"main": "./bin/index.js",
"typings": "./declarations/index.d.ts",
"types": "./declarations/index.d.ts",
"scripts": {
"build": "run-s --silent build:node:prod build:dist:prod",
"rebuild": "run-s --silent clean build",
"build:node:dev": "run-s build:node:dev:body build:node:postbuild",
"build:node:dev:body": "tsc -p ./tsconfig.json",
"build:node:prod": "run-s build:node:prod:body build:node:postbuild",
"build:node:prod:body": "cross-env NODE_ENV=production tsc -p ./tsconfig.json",
"build:node:postbuild": "run-s build:node:postbuild:0 build:node:postbuild:1",
"build:node:postbuild:0": "shx cp -R src/assets bin",
"build:node:postbuild:1": "shx cp -R src/views bin",
"build:dist:dev": "webpack --config webpack.config.js",
"build:dist:prod": "cross-env NODE_ENV=production webpack -p --config webpack.config.js",
"clean": "rimraf ./bin ./declarations ./dist",
"lint": "tslint ./src/**/*.ts -t verbose",
"test": "jasmine",
"start": "node --harmony ./bin/app.js",
"prepublish": "run-s --silent rebuild test clean",
"watch": "webpack --config webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shellyln/wp-quickstart-caller-example.git"
},
"engines": {
"node": "7.x"
},
"author": "shellyln",
"license": "MIT",
"homepage": "https://github.com/shellyln/wp-quickstart-caller-example",
"devDependencies": {
"webpack-typescript-lib-quickstart": "^0.1.3"
},
"dependencies": {}
}