-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "facetxt",
"version": "1.4.2",
"description": "",
"main": "./src/index.js",
"type": "module",
"bin": {
"facetxt": "bin/facetxt.js"
},
"exports": "./src/index.js",
"scripts": {
"test": "npm run lint && npm run lint-bin && npm run lint-test && npm run test-cli &&npm run test-src",
"test-src": "./node_modules/c8/bin/c8.js ava",
"test-cli": "bats tests/facetxt-cli.bats",
"coverage": "./node_modules/c8/bin/c8.js npm test",
"lint": "./node_modules/eslint/bin/eslint.js src/ --ext .js",
"lint-test": "./node_modules/eslint/bin/eslint.js tests/ --ext .js",
"lint-fix": "./node_modules/eslint/bin/eslint.js src/ --ext .js --fix",
"lint-test-fix": "./node_modules/eslint/bin/eslint.js tests/ --ext .js --fix",
"lint-bin": "./node_modules/eslint/bin/eslint.js bin/facetxt.js --ext .js",
"lint-bin-fix": "./node_modules/eslint/bin/eslint.js bin/facetxt.js --ext .js --fix",
"benchmark": "node ./benchmark/benchmark.js > ./benchmark/report.txt && cat ./benchmark/report.txt",
"dev": "nodemon -w . -x 'npm test && npm run benchmark'",
"pre-release": "npm audit && ./pre-release.sh",
"release": "tag=$(node -e \"console.log(require('./package.json').version)\"); git tag v${tag}; git push origin v${tag} && npm publish"
},
"keywords": [
"textfaces",
"nodejs",
"emoji",
"npm",
"ascii-art",
"emoticons",
"text-based",
"kaomoji",
"emoticon",
"kaomoji-emoticons",
"text-faces"
],
"author": "char@omg.lol",
"repository": {
"type": "git",
"url": "https://github.com/carvilsi/facetxt"
},
"license": "MIT",
"devDependencies": {
"ava": "^6.1.3",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"tinybench": "^2.6.0"
}
}