-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "kittik-shape-fig-text",
"version": "0.0.0-semantic-release",
"description": "Text shape for Kittik slides that uses FIG fonts",
"main": "lib/FigText.js",
"author": "ghaiklor",
"license": "MIT",
"homepage": "https://github.com/kittikjs/shape-fig-text#readme",
"bugs": {
"url": "https://github.com/kittikjs/shape-fig-text/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kittikjs/shape-fig-text.git"
},
"scripts": {
"clean": "rm -rf ./lib",
"compile": "npm run clean; babel src --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docs": "npm run compile; jsdoc2md \"lib/**/*.js\" > API.md",
"prepublish": "npm run compile",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha"
},
"dependencies": {
"figlet": "1.1.2",
"kittik-shape-basic": "4.0.0"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015-node4": "2.1.0",
"chai": "3.5.0",
"coveralls": "2.11.12",
"cz-conventional-changelog": "1.2.0",
"isparta": "4.0.0",
"jsdoc-to-markdown": "1.3.7",
"kittik-cursor": "5.0.0",
"mocha": "3.0.2",
"semantic-release": "4.3.5",
"sinon": "1.17.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
}
}