-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "typographizer-js",
"version": "0.5.1",
"description": "A script to fix typographic errors",
"main": "dist/index.umd.js",
"scripts": {
"ci": "npm run test:report && npm run build",
"build": "rollup -c --environment BUILD:production",
"test": "ava",
"test:watch": "ava --watch",
"test:coverage": "nyc ava --reporter=text-lcov",
"test:report": "nyc ava && nyc report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ovlb/typographizer-js.git"
},
"keywords": [
"typography",
"text formatting",
"design"
],
"author": {
"name": "Oscar Braunert",
"url": "https://www.ovl.design",
"email": "[email protected]"
},
"engines": {
"node": "^8.12.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ovlb/typographizer-js/issues"
},
"homepage": "https://github.com/ovlb/typographizer-js#readme",
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"ava": "^2.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"esm": "^3.2.4",
"nyc": "^14.1.0",
"rollup": "^1.25.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-filesize": "^6.0.1"
},
"files": [
"dist",
"source"
],
"dependencies": {}
}