-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "ansi-escape-sequences",
"author": "Lloyd Brookes <opensource@75lb.com>",
"version": "6.2.3",
"description": "A simple library containing all known terminal ansi escape codes and sequences.",
"repository": {
"type": "git",
"url": "git+https://github.com/75lb/ansi-escape-sequences.git"
},
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"license": "MIT",
"keywords": [
"ansi",
"terminal",
"colour",
"color",
"command line",
"cursor"
],
"engines": {
"node": ">=12.17"
},
"scripts": {
"test": "npm run dist && npm run test:ci",
"test:ci": "75lb-nature test-runner test.js",
"docs": "75lb-nature jsdoc2md -d 1 -t README.hbs index.js > README.md",
"dist": "75lb-nature cjs-build index.js && 75lb-nature simple-rollup index.js"
},
"dependencies": {
"array-back": "^6.2.2"
},
"devDependencies": {},
"peerDependencies": {
"@75lb/nature": "latest"
},
"peerDependenciesMeta": {
"@75lb/nature": {
"optional": true
}
},
"files": [
"index.js",
"dist"
],
"standard": {
"ignore": [
"dist"
],
"envs": []
}
}