-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "out-of-character",
"description": "remove invisible unicode characters",
"version": "1.2.2",
"author": "Spencer Kelly and Adam Tsiopani",
"main": "./builds/out-of-character.js",
"unpkg": "./builds/out-of-character.min.js",
"module": "./builds/out-of-character.mjs",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/spencermountain/out-of-character.git"
},
"scripts": {
"test": "tape \"./tests/**/*.test.js\" | tap-dancer --color always",
"testb": "TESTENV=prod tape \"./tests/**/*.test.js\" | tap-dancer --color always",
"watch": "amble ./scratch.js",
"lint": "eslint . --fix",
"build": "rollup -c --silent",
"config:parse": "amble scripts/parse-config/index.js",
"config:view": "live-server --mount=/data:./data --mount=/:./public",
"config:print": "do something"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"bin": {
"out-of-character": "./bin/out-of-character.js"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"src/",
"data/characters.json",
"bin/",
"builds/",
"types/index.d.ts"
],
"eslintIgnore": [
"builds/*.js"
],
"devDependencies": {
"@babel/core": "7.22.15",
"@babel/preset-env": "7.22.15",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"amble": "1.3.0",
"axios": "1.5.0",
"eslint": "8.48.0",
"live-server": "1.2.2",
"rollup": "4.12.0",
"rollup-plugin-terser": "7.0.2",
"shelljs": "^0.8.4",
"tap-dancer": "0.3.4",
"tape": "5.6.6"
},
"dependencies": {
"colorette": "2.0.20",
"glob": "7.2.0"
},
"license": "MIT"
}