-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.2 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.2 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@cdot/dictionary",
"version": "1.0.3",
"description": "Dictionaries using directed acyclic word graphs",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/cdot/dictionary"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"package.json",
"README.md",
"dist/*/*.js",
"dist/*/*.json",
"src/*.js",
"bin/*.js"
],
"author": {
"name": "Crawford Currie",
"url": "https://github.com/cdot"
},
"license": "MIT",
"devDependencies": {
"c8": "^7.13.0",
"chai": "^4.3.7",
"docdash": "^2.0.1",
"eslint": ">=8.35.0",
"esprima": "^4.0.1",
"jsdoc": "^4.0.2",
"marked": "^4.2.12",
"mocha": "^10.2.0",
"tmp": "^0.2.1",
"uglify-js": "^3.17.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"build": "webpack -c webpack/cjs.js & webpack -c webpack/mjs.js & webpack -c webpack/amd.js",
"doc": "jsdoc --verbose -R README.md -c jsdoc_config.json -r -d doc src -t node_modules/docdash",
"lint": "eslint src -f unix",
"test": "mocha test",
"coverage": "NODE_ENV=test c8 mocha test"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 13
},
"env": {
"shared-node-browser": true,
"es6": true
},
"globals": {
"assert": "writable",
"define": "writable",
"requirejs": "writable",
"Mocha": "writable",
"WeakRef": "readonly"
},
"rules": {
"camelcase": 0,
"curly": 0,
"dot-notation": 1,
"new-cap": 0,
"no-alert": 0,
"no-console": 0,
"no-debugger": 0,
"no-eval": 0,
"no-fallthrough": 0,
"no-global-assign": 0,
"no-loop-func": 1,
"no-mixed-spaces-and-tabs": 0,
"no-new": 0,
"no-prototype-builtins": 0,
"no-redeclare": [
"error",
{
"builtinGlobals": true
}
],
"no-trailing-spaces": 1,
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"no-useless-escape": 1,
"no-use-before-define": 0,
"quotes": 0,
"strict": 0
}
},
"dependencies": {
"posix-getopt": "^1.2.1"
}
}