-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "at-quotes",
"description": "Random quotes from Adventure Time",
"version": "1.3.3",
"keywords": [
"adventure time",
"adventure",
"random quote"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agudulin/at-quotes.git"
},
"bugs": {
"url": "https://github.com/agudulin/at-quotes/issues"
},
"homepage": "https://github.com/agudulin/at-quotes#readme",
"dependencies": {
"textr": "^0.3.0",
"typographic-ellipses": "^1.0.11",
"typographic-quotes": "^2.0.1",
"typographic-single-spaces": "^1.0.2"
},
"devDependencies": {
"ava": "^0.25.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"husky": "^1.1.0",
"standard": "^12.0.1"
},
"main": "./dist/index.js",
"scripts": {
"pre-test": "npm run transpile",
"test": "standard && ava",
"transpile": "babel --stage 0 ./src -d ./dist",
"pre-push": "npm test",
"prepublish": "npm run transpile",
"postpublish": "rm -rf ./dist"
},
"babel": {
"presets": [
"es2015"
]
},
"author": "Alexander Gudulin <alexandr.gudulin@gmail.com> (http://gudulin.com)",
"license": "MIT"
}