|
11 | 11 | "literal",
|
12 | 12 | "word"
|
13 | 13 | ],
|
14 |
| - "dependencies": { |
15 |
| - "nlcst-to-string": "^2.0.0" |
16 |
| - }, |
17 |
| - "repository": "wooorm/nlcst-is-literal", |
18 |
| - "author": "Titus Wormer <[email protected]>", |
| 14 | + "repository": "https://github.com/wooorm/nlcst-is-literal", |
| 15 | + "bugs": "https://github.com/wooorm/nlcst-is-literal/issues", |
| 16 | + "author": "Titus Wormer <[email protected]> (http://wooorm.com)", |
| 17 | + "contributors": [ |
| 18 | + "Titus Wormer <[email protected]> (http://wooorm.com)" |
| 19 | + ], |
19 | 20 | "files": [
|
20 | 21 | "index.js"
|
21 | 22 | ],
|
| 23 | + "dependencies": { |
| 24 | + "nlcst-to-string": "^2.0.0" |
| 25 | + }, |
22 | 26 | "devDependencies": {
|
23 | 27 | "browserify": "^13.0.0",
|
24 | 28 | "esmangle": "^1.0.0",
|
|
31 | 35 | "xo": "^0.17.1"
|
32 | 36 | },
|
33 | 37 | "scripts": {
|
34 |
| - "test-api": "node test", |
35 |
| - "test-coverage": "nyc --reporter lcov tape test.js", |
36 |
| - "test-travis": "npm run test-coverage", |
37 |
| - "test": "npm run test-api", |
38 |
| - "lint": "xo", |
39 |
| - "make": "npm run lint && npm run test-coverage", |
40 |
| - "bundle": "browserify index.js --no-builtins -s nlcstIsLiteral > nlcst-is-literal.js", |
41 |
| - "postbundle": "esmangle nlcst-is-literal.js > nlcst-is-literal.min.js", |
42 | 38 | "build-md": "remark . --quiet --frail --output",
|
43 |
| - "build": "npm run bundle && npm run build-md" |
| 39 | + "build-bundle": "browserify index.js --bare -s nlcstIsLiteral > nlcst-is-literal.js", |
| 40 | + "build-mangle": "esmangle < nlcst-is-literal.js > nlcst-is-literal.min.js", |
| 41 | + "build": "npm run build-md && npm run build-bundle && npm run build-mangle", |
| 42 | + "lint": "xo", |
| 43 | + "test-api": "node test", |
| 44 | + "test-coverage": "nyc --reporter lcov tape test/index.js", |
| 45 | + "test": "npm run build && npm run lint && npm run test-coverage" |
44 | 46 | },
|
45 | 47 | "nyc": {
|
46 | 48 | "check-coverage": true,
|
|
0 commit comments