-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.96 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
{
"name": "typography-fixer",
"version": "0.1.0",
"description": "Check or fix strings according to typographic rules",
"main": "lib/typography-fixer.js",
"scripts": {
"test": "nyc mocha --timeout 5000 --recursive 'test/**/*.js'",
"lcov_report": "nyc report --reporter=lcov",
"coverage": "npm run lcov_report && codecov",
"babel": "babel src --out-dir lib",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"lint:fix": "eslint --fix 'src/**/*.js' 'test/**/*.js'",
"esdoc": "esdoc -c esdoc.json",
"prepublishOnly": "npm run babel"
},
"keywords": [
"typography"
],
"repository": {
"type": "git",
"url": "git://github.com/abe33/typography-fixer.git"
},
"bugs": "http://github.com/abe33/typography-fixer/issues",
"commits": "http://github.com/abe33/typography-fixer/commits",
"author": "Cédric Néhémie <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.3",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.0",
"babel-plugin-transform-modern-regexp": "0.0.6",
"esdoc": "^1.1.0",
"eslint": "^4.12.1",
"eslint-config": "^0.3.0",
"eslint-config-fbjs": "^1.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^5.2.2",
"expect.js": "^0.3.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^1.17.7"
},
"dependencies": {
"ramda": "^0.19.1"
},
"babel": {
"sourceMaps": "inline",
"presets": [
"@babel/preset-env"
],
"plugins": [
"transform-modern-regexp"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"include": [
"src/**/*.js"
],
"extension": [
".js"
],
"require": [
"@babel/register"
]
}
}