-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "textr",
"version": "0.3.0",
"description": "Tiny and extendable text transforming framework",
"homepage": "http://A.github.io/textr/",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/A/textr"
},
"bugs": {
"url": "https://github.com/A/textr/issues"
},
"scripts": {
"coverage": "istanbul cover _mocha",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"test": "mocha",
"tdd": "npm test -- --watch",
"bench": "node -p \"i=j=1000000,s=+new Date;while(i--){require('.')('hello')};new Date-s+'ms for '+j+' iterations'\""
},
"keywords": [
"typographic",
"textr",
"transformer",
"text"
],
"author": "Anton Shuvalov <[email protected]>",
"maintainers": [
"Anton Shuvalov <[email protected]>",
"Vladimir Starkov <[email protected]> (https://iamstarkov.com/)"
],
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.11",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "0.0.2",
"should": "^5.2.0"
}
}