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