|
5 | 5 | "main": "build/main/index.js",
|
6 | 6 | "typings": "build/main/index.d.ts",
|
7 | 7 | "module": "build/module/index.js",
|
| 8 | + "browser": "build/browser/index.js", |
8 | 9 | "repository": "https://github.com/bitjson/typescript-starter",
|
9 | 10 | "author": "Jason Dreyzehner <[email protected]>",
|
10 | 11 | "license": "MIT",
|
11 | 12 | "scripts": {
|
12 | 13 | "info": "npm-scripts-info",
|
13 |
| - "build": "trash build && tsc -p tsconfig.json && tsc -p config/tsconfig.module.json", |
| 14 | + "build": "trash build && yarn build:main && yarn build:module && yarn build:browser-deps && yarn build:browser && yarn build:browser-cjs", |
| 15 | + "build:main": "tsc -p tsconfig.json", |
| 16 | + "build:module": "tsc -p config/exports/tsconfig.module.json", |
| 17 | + "build:browser-deps": "mkdirp build/temp && browserify node_modules/hash.js/lib/hash.js -o build/temp/hash.js", |
| 18 | + "build:browser": "rollup -c config/exports/rollup.config.js -f es -o build/browser/index.js", |
| 19 | + "build:browser-cjs": "rollup -c config/exports/rollup.config.js -f cjs -o build/browser/index.cjs.js", |
| 20 | + "build:tests": "node config/exports/build-tests.js", |
14 | 21 | "lint": "tslint src/**/*.ts",
|
15 |
| - "unit": "yarn build && nyc ava", |
| 22 | + "unit": "yarn build && yarn build:tests && nyc ava", |
16 | 23 | "check-coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100",
|
17 |
| - "test": "yarn lint && yarn unit && yarn check-coverage", |
| 24 | + "test": "yarn lint && yarn unit && yarn check-coverage && ava", |
18 | 25 | "watch": "trash build && multiview [yarn watch:build] [yarn watch:unit]",
|
19 | 26 | "watch:build": "tsc -p tsconfig.json -w",
|
20 | 27 | "watch:unit": "tsc -p tsconfig.json && ava --watch --verbose",
|
| 28 | + "watch:build:tests": "node config/exports/build-tests.js -w", |
21 | 29 | "cov": "yarn unit && yarn html-coverage && opn coverage/index.html",
|
22 | 30 | "html-coverage": "nyc report --reporter=html",
|
23 | 31 | "send-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
|
|
46 | 54 | },
|
47 | 55 | "devDependencies": {
|
48 | 56 | "@types/node": "^7.0.5",
|
49 |
| - "ava": "^0.18.1", |
| 57 | + "ava": "^0.18.2", |
| 58 | + "browserify": "^14.1.0", |
50 | 59 | "codecov": "^1.0.1",
|
| 60 | + "cpx": "^1.5.0", |
| 61 | + "hash.js": "^1.0.3", |
| 62 | + "mkdirp": "^0.5.1", |
51 | 63 | "multiview": "^2.3.1",
|
52 | 64 | "npm-scripts-info": "^0.3.6",
|
53 | 65 | "nyc": "^10.0.0",
|
54 | 66 | "opn-cli": "^3.1.0",
|
| 67 | + "rollup": "^0.41.4", |
| 68 | + "rollup-plugin-alias": "^1.2.0", |
| 69 | + "rollup-plugin-commonjs": "^7.0.0", |
| 70 | + "rollup-plugin-node-resolve": "^2.0.0", |
55 | 71 | "standard-version": "^4.0.0",
|
56 | 72 | "trash-cli": "^1.4.0",
|
57 | 73 | "tslint": "^4.0.2",
|
|
82 | 98 | ],
|
83 | 99 | "nyc": {
|
84 | 100 | "exclude": [
|
85 |
| - "**/*.spec.js" |
86 |
| - ] |
87 |
| - }, |
88 |
| - "ava": { |
89 |
| - "files": [ |
90 |
| - "build/main/**/*.spec.js" |
91 |
| - ], |
92 |
| - "source": [ |
93 |
| - "build/main/**/*" |
| 101 | + "**/*.spec.js", |
| 102 | + "build" |
94 | 103 | ]
|
95 | 104 | },
|
96 | 105 | "dependencies": {
|
|
0 commit comments