-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
55 lines (55 loc) · 1.39 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": "wtf-plugin-person",
"description": "person-details plugin for wtf_wikipedia",
"version": "1.0.0",
"type": "module",
"main": "./src/index.js",
"unpkg": "./builds/wtf-plugin-person.min.js",
"module": "./builds/wtf-plugin-person.mjs",
"exports": {
".": {
"import": "./src/index.js",
"require": "./builds/wtf-plugin-person.cjs"
}
},
"author": "Spencer Kelly (spencermountain)",
"homepage": "https://github.com/spencermountain/wtf_wikipedia/plugins/person#readme",
"repository": {
"type": "git",
"url": "git://github.com/spencermountain/wtf_wikipedia.git"
},
"scripts": {
"watch": "amble ./scratch.js",
"test": "tape ./tests/**/*.test.js | tap-dancer",
"testb": "TESTENV=prod tape ./tests/**/*.test.js | tap-dancer",
"build": "rollup -c"
},
"files": [
"builds",
"src"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"dependencies": {
"compromise": "14.0.0",
"spacetime": "7.1.2"
},
"peerDependencies": {
"wtf_wikipedia": ">=9.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "21.0.3",
"@rollup/plugin-node-resolve": "13.1.3",
"rollup": "2.70.1",
"rollup-plugin-filesize-check": "0.0.1",
"rollup-plugin-terser": "7.0.2",
"tap-dancer": "0.3.4",
"tape": "5.5.2"
},
"license": "MIT"
}