-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "@detools/travis-scripts",
"version": "1.1.5",
"description": "Scripts to run builds and tests for 3rd-party modules on Travis CI",
"main": "index.js",
"scripts": {
"postinstall": "node -r esm scripts/postinstall.js",
"ci": "node scripts/installNodeModules.js; node -r esm scripts/ci.js",
"lint": "eslint '.travis/*' 'scripts/**/*'",
"pub": "npm publish ./ --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/detools/travis-scripts.git"
},
"keywords": [
"travis"
],
"author": "Anton Kuznetsov <[email protected]> (https://github.com/isnifer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/detools/travis-scripts/issues"
},
"homepage": "https://github.com/detools/travis-scripts#readme",
"dependencies": {
"chalk": "^2.4.2",
"command-exists": "^1.2.8",
"esm": "^3.2.18",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"luxon": "^1.11.4"
},
"devDependencies": {
"@detools/eslint-config": "^1.2.0",
"eslint": "^5.15.3"
},
"eslintConfig": {
"extends": "@detools/eslint-config"
}
}