This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
{
"name": "ca-ui-themer",
"version": "0.0.0-development",
"license": "MIT",
"author": "CA Technologies",
"description": "Framework agnostic utility to make generic JavaScript components themeable and extensible.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"flow": "flow check",
"flow:coverage": "flow-coverage-report -i './src/**/*.js' -t html -t text",
"flow:copy": "flow-copy-source src lib",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"codecov": "codecov",
"commit": "git-cz",
"prebuild": "rimraf ./lib",
"compile": "babel --out-dir ./lib --ignore *.spec.js, ./src",
"build": "npm run compile && npm run flow:copy",
"release": "semantic-release pre && npm publish && semantic-release post",
"commitmsg": "validate-commit-msg",
"precommit": "npm run lint && npm run test"
},
"dependencies": {
"lodash": "^4.17.4",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-preset-ca": "^1.1.0",
"codecov": "^2.1.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.18.0",
"eslint-config-ca": "^2.0.0",
"flow-bin": "^0.42.0",
"flow-copy-source": "^1.1.0",
"flow-coverage-report": "^0.3.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.2",
"validate-commit-msg": "^2.11.2"
},
"keywords": [
"JS",
"CSS",
"Themer"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/CAAPIM/themer.git"
}
}