-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.6 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.6 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
{
"author": {
"name": "Jelle Licht",
"url": "https://github.com/steem-monsters/atom"
},
"bugs": {
"url": "https://github.com/steem-monsters/atom/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {},
"description": "",
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/travis-cli": "^17.0.2",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"codecov": "^3.8.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^19.0.3",
"source-map-support": "^0.5.21",
"travis-deploy-once": "^5.0.1",
"ts-jest": "^28.0.5",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.22.17",
"typescript": "^4.7.4",
"utility-types": "^3.10.0"
},
"files": [
"dist",
"package.json",
"LICENSE"
],
"homepage": "https://github.com/steem-monsters/atom",
"husky": {
"hooks": {
"pre-commit": "./scripts/precommit.sh",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"atom",
"clojure",
"clojurescript",
"functional programming",
"functional-reactive programming",
"rx",
"state-management"
],
"license": "MIT",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"name": "@steem-monsters/atom",
"repository": {
"type": "git",
"url": "https://github.com/steem-monsters/atom.git"
},
"scripts": {
"build": "rollup -c rollup.config.ts",
"build:dev": "npm run prebuild && webpack",
"build:docs": "rimraf docs && typedoc --options typedoc.js src",
"git:commit": "npx git-cz",
"dev": "npm run test -- --watch",
"lint": "tslint --project .",
"lint:fix": "tslint --project --fix",
"prebuild": "rimraf dist",
"semantic-release": "semantic-release",
"test": "jest --env=jsdom",
"test:withCoverage": "jest --env=jsdom --collectCoverage",
"travis-deploy-once": "travis-deploy-once"
},
"sideEffects": false,
"types": "dist/types/index.d.ts",
"unpkg": "https://unpkg.com/@steem-monsters/atom",
"version": "1.3.5-development"
}