-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpackage.json
88 lines (88 loc) · 2.45 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wtf_wikipedia",
"description": "parse wikiscript into json",
"version": "10.3.2",
"main": "src/index.js",
"module": "builds/wtf_wikipedia.mjs",
"unpkg": "builds/wtf_wikipedia-client.min.js",
"browser": "builds/wtf_wikipedia-client.min.js",
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"require": "./builds/wtf_wikipedia.cjs",
"types": "./types/index.d.ts"
}
},
"author": "Spencer Kelly <[email protected]> (http://spencermounta.in)",
"repository": {
"type": "git",
"url": "git://github.com/spencermountain/wtf_wikipedia.git"
},
"man": [
"./builds/man/wtf_wikipedia.1"
],
"types": "types/index.d.ts",
"scripts": {
"build": "node ./scripts/version.js && rollup -c",
"build:all": "node ./scripts/buildAll.js",
"codecov": "npm run coverage && codecov -t 62d2cc94-1c1f-4e21-a9af-42cc0cf39c51",
"coverage": "nyc -r lcov -n 'src/**/*' -n 'plugins/**/*' npm run test && npm run test:fetch",
"lint": "eslint ./src/ ./plugins ./tests",
"postinstall": "path-exists ./plugins && npm-recursive-install --rootDir=plugins || echo 'nothing to install'",
"start": "node ./scripts/demo.js",
"test": "NODE_NO_WARNINGS=1 tape ./tests/**/*.test.js | tap-dancer",
"testb": "TESTENV=prod npm run test",
"test:fetch": "tape ./tests/fetch/*.test.js | tap-dancer",
"test:integration": "tape ./tests/integration/*.test.js | tap-dancer",
"watch": "NODE_NO_WARNINGS=1 amble ./scratch.js"
},
"bin": {
"wtf_wikipedia": "./cli.js"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"builds",
"src",
"types"
],
"keywords": [
"wikipedia",
"wikimedia",
"wikipedia markup",
"wikiscript"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0",
"path-exists-cli": "2.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-node-resolve": "15.0.2",
"@rollup/plugin-terser": "0.4.4",
"amble": "1.3.0",
"codecov": "3.8.3",
"eslint": "8.48.0",
"eslint-plugin-compat": "4.2.0",
"eslint-plugin-regexp": "1.15.0",
"nyc": "^15.1.0",
"recursive-install": "1.4.0",
"rollup": "3.21.6",
"shelljs": "0.8.5",
"tap-dancer": "0.3.4",
"tape": "5.8.1"
},
"eslintIgnore": [
"builds/*.js"
],
"license": "MIT"
}