-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.58 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.58 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ship-components-utility",
"version": "2.1.1",
"description": "Javascript set of utilities",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"build": "npm test && grunt clean && grunt build",
"lint": "./node_modules/eslint/bin/eslint.js src/**/*.js",
"test": "npm run lint && ./node_modules/jest-cli/bin/jest.js --coverage",
"watch:test": "./node_modules/jest-cli/bin/jest.js --coverage --watch",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"travis": "npm install trevor && trevor"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ship-components/ship-components-utility.git"
},
"keywords": [
"javascript",
"javascript-library",
"node",
"grunt",
"webpack",
"utilities",
"jest"
],
"author": "Sepand Assadi <sepand.assadi@sony.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ship-components/ship-components-utility/issues"
},
"homepage": "https://github.com/ship-components/ship-components-utility#readme",
"contributors": [
{
"name": "Isaac Suttell",
"email": "isaac.suttell@sony.com"
},
{
"name": "Sepand Assadi",
"email": "sepand.assadi@sony.com"
},
{
"name": "Chris Orescan",
"email": "chris.orescan@sony.com"
},
{
"name": "Jared Boone",
"email": "jared.boone@sony.com"
}
],
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
}
},
"babelJest": {
"include": [
"src/**/*.@(js|es6)"
]
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"ajv": "^6.5.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.0.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-ship-components": "^1.5.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.13.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-coveralls": "^2.0.0",
"grunt-eslint": "^21.0.0",
"grunt-webpack": "^3.1.3",
"husky": "^2.3.0",
"istanbul-lib-instrument": "^3.3.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"lint-staged": "^8.1.7",
"strict-loader": "^1.1.0",
"webpack": "^4.32.2"
},
"dependencies": {
"trevor": "^2.4.0"
}
}