-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.95 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
{
"name": "gh-emoji",
"version": "0.2.5",
"description": "Github emoji parsing done right",
"main": "dist/gh-emoji.js",
"scripts": {
"dist": "npm run dist:babel && npm run dist:uglify && npm run docs && npm run dist:flow",
"dist:babel": "babel ./src --presets es2015 --out-file dist/gh-emoji.js",
"dist:flow": "cp src/flow/definitions/*.js.flow dist",
"dist:uglify": "uglifyjs dist/gh-emoji.js -o dist/gh-emoji.min.js",
"docs": "npm run docs:intro && npm run docs:gen && npm run docs:outro && npm run docs:add",
"docs:add": "git add README.md",
"docs:gen": "documentation build -g -f md ./src/index.js >> README.md",
"docs:intro": "cat markdown/intro.md > README.md",
"docs:outro": "cat markdown/outro.md >> README.md",
"pre-commit": "npm run pre-commit:lint",
"pre-commit:lint": "eslint ./src/**/*.js",
"test": "npm run test:browser",
"test:browser": "browserify -t babelify ./test | tape-run | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzarcon/gh-emoji.git"
},
"author": "zzarcon",
"license": "MIT",
"bugs": {
"url": "https://github.com/zzarcon/gh-emoji/issues"
},
"homepage": "https://github.com/zzarcon/gh-emoji#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browser-run": "^3.1.0",
"browserify": "^13.0.0",
"documentation": "^4.0.0-beta2",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-flow-vars": "^0.2.1",
"fetch-mock": "^4.3.1",
"ghooks": "^1.1.1",
"relaser": "^0.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"tape-run": "^2.1.3",
"uglify-js": "2.6.2"
},
"config": {
"ghooks": {
"pre-commit": "npm run pre-commit"
}
}
}