This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
95 lines (95 loc) · 2.28 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "literallycanvas-core",
"version": "1.1.0",
"description": "HTML5 drawing widget - core lib",
"main": "dist/bundle.js",
"files": [
"lib/*",
"src/*",
"dist/*"
],
"scripts": {
"test": "jest --no-cache",
"test:coverage": "jest --no-cache --coverage",
"test:watch": "jest --no-cache --watch",
"build": "webpack -d",
"build:watch": "webpack -d --watch",
"prettier": "prettier --write \"src/**/*.js\"",
"release": "semantic-release",
"lint": "eslint src"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn test && lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
},
"repository": {
"type": "git",
"url": "git://github.com/literallycanvas/literallycanvas-core.git"
},
"keywords": [
"html5",
"canvas",
"drawing"
],
"author": "Steve Johnson and Cameron Paul",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/literallycanvas/literallycanvas-core/issues"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.js$",
"collectCoverageFrom": [
"src/**/*.js"
]
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/git": "^7.0.5",
"@semantic-release/npm": "^5.0.5",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "~13.0.0",
"commit-status": "^4.3.0",
"envify": "~3.4.0",
"eslint": "^5.7.0",
"gulp": "~3.9.0",
"gulp-rename": "~1.2.2",
"gulp-uglify": "~1.5.1",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "1.14.3",
"semantic-release": "^15.10.5",
"uglify-js": "~2.6.1",
"vinyl-source-stream": "~1.1.0",
"watchify": "~3.7.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}