-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
34 lines (34 loc) · 1.24 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
{
"name": "hterm-umdjs",
"version": "1.4.1",
"description": "Chromium's hterm, automatically packaged as a UMD module (CommonJS/AMD/globals)",
"homepage": "https://github.com/dbkaplun/hterm-umdjs#readme",
"bugs": "https://github.com/dbkaplun/hterm-umdjs/issues",
"main": "dist/index.js",
"scripts": {
"build": "babel-node build.js",
"test": "npm run eslint && npm run jest",
"hterm-version": "if [[ -z $(git status --porcelain) ]]; then version=\"$(npm run build | tail -n1)\" && npm test && git add . && git commit -m \"Version $version\" && git tag \"v$version\"; else echo 'Git working directory not clean.' && exit 1; fi",
"shipit": "git push origin master --tags && npm publish",
"eslint": "eslint .",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbkaplun/hterm-umdjs.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-jest": "22.4.4",
"babel-preset-env": "1.7.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.8.2",
"jest": "22.4.4"
},
"author": "Dan Kaplun <dbkaplun@gmail.com>",
"license": "MIT"
}