-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.52 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
{
"author": {
"name": "Derrick Beining",
"url": "https://github.com/libre-org"
},
"bugs": {
"url": "https://github.com/libre-org/atom/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {},
"description": "",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.2.1",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.9",
"codecov": "^3.1.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.4",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.18.0",
"rollup-plugin-uglify": "^6.0.0",
"semantic-release": "^15.6.3",
"source-map-support": "^0.5.6",
"travis-deploy-once": "^5.0.1",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6",
"utility-types": "^2.1.0"
},
"files": [
"dist",
"package.json",
"LICENSE"
],
"homepage": "https://libre-org.github.io/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": "@libre/atom",
"repository": {
"type": "git",
"url": "https://github.com/libre-org/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/@libre/atom",
"version": "0.0.0-development"
}