-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
{
"name": "smartypants",
"version": "0.2.2",
"type": "module",
"main": "smartypants.mjs",
"module": "smartypants.mjs",
"browser": "smartypants.es6.js",
"jsnext:main": "smartypants.es6.js",
"exports": {
".": {
"import": "./smartypants.mjs",
"require": "./smartypants.cjs"
}
},
"scripts": {
"test": "node --experimental-modules test/index.mjs"
},
"keywords": [
"smartypants",
"typographic",
"quote",
"dash",
"ellipses"
],
"repository": {
"url": "git@github.com:othree/smartypants.js.git",
"type": "git"
},
"author": {
"name": "othree",
"url": "https://github.com/othree"
},
"license": "BSD-3-Clause",
"files": [
"smartypants.js",
"smartypants.mjs",
"smartypants.cjs",
"smartypants.es6.js",
"bin/smartypants.js",
"bin/smartypantsu.js"
],
"bin": {
"smartypants": "./bin/smartypants.js",
"smartypantsu": "./bin/smartypantsu.js"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-pep8-blank-lines": "0.0.5",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"tape": "^4.9.0",
"typescript": "^3.0.3",
"uglify-js": "3.9.4"
}
}