-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "alfheim",
"private": true,
"version": "0.1.0",
"description": "A collection of tools to help create, maintain, and grow JS component libraries",
"bugs": {
"url": "https://github.com/Nasdaq/alfheim/issues"
},
"repository": "https://github.com/Nasdaq/alfheim.git",
"author": "Haldun Anil",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"cli",
"cli-app",
"react",
"reactjs",
"component",
"component-library",
"components",
"react-component",
"typescript"
],
"scripts": {
"test": "nyc mocha $(find . -name '*.test.js' ! -ipath '*node_modules*') --timeout 10000",
"test:ci": "nyc mocha $(find . -name '*.test.js' ! -ipath '*node_modules*') --bail --timeout 10000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"babel-loader": "^8.0.5",
"conventional-changelog-cli": "^2.0.11",
"coveralls": "^3.0.6",
"faker": "^4.1.0",
"husky": "^1.2.1",
"identity-obj-proxy": "^3.0.0",
"lerna": "^3.15.0",
"lint-staged": "^9.2.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.15.3",
"regenerator-runtime": "^0.13.1",
"rimraf": "^3.0.0",
"sinon": "^7.4.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"husky": {
"hooks": {
"commit-msg": "node ./hooks/commit-msg.js && commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{js,json}": [
"mocha --bail",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nyc": {
"all": true,
"include": [
"packages/**/*.js"
],
"reporter": [
"html",
"text"
]
}
}