-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.54 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
{
"name": "typographer.js",
"version": "1.0.0",
"description": "Apply typographic rules for a better typography on the web and web-based technologies",
"main": "dist/index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daformat/typographer.js.git"
},
"keywords": [
"typographer.js",
"typographer",
"typography",
"typographic",
"typographic rules",
"typo",
"typo.js",
"non-breaking space",
"orphans"
],
"author": "Mathieu Jouhet",
"license": "MIT",
"bugs": {
"url": "https://github.com/daformat/typographer.js/issues"
},
"homepage": "https://github.com/daformat/typographer.js#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"eslint": "^5.15.3",
"eslint-loader": "^2.1.2",
"eslint-plugin-jest": "^22.4.1",
"jest": "^24.5.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"jest"
],
"env": {
"jest/globals": true,
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"sourceType": "module"
},
"rules": {}
}
}