-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2 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
{
"name": "typographic-base",
"version": "1.0.4",
"description": "typography set for fixing common issues",
"main": "index.es5.js",
"scripts": {
"watch": "npm run transpile -- --watch",
"coverage": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha index.js -- --compilers js:babel-core/register",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"test": "mocha --require babel-core/register",
"tdd": "npm test -- --watch",
"transpile": "babel index.js --out-file index.es5.js",
"prepublish": "npm run transpile",
"clean": "rimraf index.es5.js",
"push": "git push --follow-tags",
"postpublish": "npm-run-all clean push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamstarkov/typographic-base.git"
},
"keywords": [
"typo",
"typography",
"textr"
],
"author": "Vladimir Starkov <[email protected]> (https://iamstarkov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamstarkov/typographic-base/issues"
},
"homepage": "https://github.com/iamstarkov/typographic-base#readme",
"devDependencies": {
"assert": "*",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-istanbul": "^0.5.9",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-preset-es2015": "^6.1.18",
"coveralls": "*",
"mocha": "*",
"npm-run-all": "*",
"rimraf": "*"
},
"dependencies": {
"textr": "^0.3.0",
"typographic-apostrophes": "^1.1.1",
"typographic-apostrophes-for-possessive-plurals": "^1.0.5",
"typographic-arrows": "^1.0.0",
"typographic-copyright": "^1.0.1",
"typographic-currency": "^1.1.0",
"typographic-ellipses": "^1.0.11",
"typographic-em-dashes": "^1.0.2",
"typographic-en-dashes": "^1.0.1",
"typographic-math-symbols": "^1.1.5",
"typographic-quotes": "^1.2.1",
"typographic-registered-trademark": "^1.0.1",
"typographic-single-spaces": "^1.0.2",
"typographic-trademark": "^1.0.1"
}
}