UNPKG

1.54 kBJSONView Raw
1{
2 "name": "pcreate",
3 "version": "1.0.0-beta19",
4 "description": "",
5 "main": "./es/index.js",
6 "module": "./es/index.js",
7 "typings": "./es/index",
8 "files": [
9 "es",
10 "template"
11 ],
12 "bin": {
13 "pcreate": "./es/bin/pcreate",
14 "pc": "./es/bin/pcreate"
15 },
16 "scripts": {
17 "clean": "node ./tools/clean.js",
18 "tsBuild": "tsc -p tsconfig.json && node ./tools/copy.js",
19 "docs": "typedoc --out docs src --module commonjs --hideGenerator && node ./tools/formatDocs.js",
20 "build": "npm run clean && npm run tsBuild && npm run docs",
21 "test": "nyc mocha -t 5000",
22 "test-nyc": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
23 "start": "npm run build && node ./es/index.js"
24 },
25 "nyc": {
26 "include": [
27 "src/**/*.ts"
28 ],
29 "extension": [
30 ".ts"
31 ],
32 "require": [
33 "ts-node/register"
34 ],
35 "sourceMap": true,
36 "instrument": true
37 },
38 "keywords": [],
39 "author": "heifade",
40 "license": "MIT",
41 "dependencies": {
42 "fs-extra": "^5.0.0",
43 "fs-i": "^1.0.0-beta5",
44 "inquirer": "^4.0.1",
45 "yargs": "^10.0.3"
46 },
47 "devDependencies": {
48 "@types/chai": "^4.0.5",
49 "@types/inquirer": "0.0.36",
50 "@types/mocha": "^2.2.44",
51 "@types/mysql": "^2.15.1",
52 "@types/yargs": "^10.0.0",
53 "chai": "^4.1.2",
54 "coveralls": "^3.0.0",
55 "mocha": "^4.0.1",
56 "nyc": "^11.3.0",
57 "source-map-support": "^0.5.0",
58 "ts-node": "^3.3.0",
59 "typedoc": "^0.9.0",
60 "typedoc-format": "^1.0.0-beta1",
61 "typescript": "^2.6.1"
62 }
63}