1 | {
|
---|
2 | "name": "set-harmonic-interval",
|
---|
3 | "version": "1.0.1",
|
---|
4 | "description": "",
|
---|
5 | "author": {
|
---|
6 | "name": "streamich",
|
---|
7 | "url": "https://github.com/streamich"
|
---|
8 | },
|
---|
9 | "homepage": "https://github.com/streamich/set-harmonic-interval",
|
---|
10 | "repository": "streamich/set-harmonic-interval",
|
---|
11 | "license": "Unlicense",
|
---|
12 | "engines": {
|
---|
13 | "node": ">=6.9"
|
---|
14 | },
|
---|
15 | "main": "lib/index.js",
|
---|
16 | "module": "lib/index.esm.js",
|
---|
17 | "esnext": "lib/index.next.esm.js",
|
---|
18 | "types": "lib/index.d.ts",
|
---|
19 | "typings": "lib/index.d.ts",
|
---|
20 | "files": [
|
---|
21 | "lib/"
|
---|
22 | ],
|
---|
23 | "scripts": {
|
---|
24 | "prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,tsx,js,jsx}\"",
|
---|
25 | "prettier:diff": "prettier -l \"src/**/*.{ts,tsx,js,jsx}\"",
|
---|
26 | "tslint": "tslint 'src/**/*.{js,jsx,ts,tsx}' -t verbose",
|
---|
27 | "clean": "rimraf lib",
|
---|
28 | "build": "rimraf ./dist && rollup --config",
|
---|
29 | "test": "jest --no-cache --config='jest.config.js'",
|
---|
30 | "release": "semantic-release",
|
---|
31 | "demo1": "yarn build && node demo1.js",
|
---|
32 | "demo2": "yarn build && node demo2.js"
|
---|
33 | },
|
---|
34 | "husky": {
|
---|
35 | "hooks": {
|
---|
36 | "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
---|
37 | "pre-commit": "pretty-quick --staged && yarn tslint",
|
---|
38 | "pre-push": "yarn prettier:diff"
|
---|
39 | }
|
---|
40 | },
|
---|
41 | "keywords": [],
|
---|
42 | "dependencies": {},
|
---|
43 | "devDependencies": {
|
---|
44 | "@commitlint/cli": "^8.1.0",
|
---|
45 | "@commitlint/config-conventional": "^8.1.0",
|
---|
46 | "@semantic-release/changelog": "^3.0.4",
|
---|
47 | "@semantic-release/git": "^7.0.16",
|
---|
48 | "@semantic-release/npm": "^5.1.15",
|
---|
49 | "@types/jest": "^24.0.18",
|
---|
50 | "husky": "^3.0.4",
|
---|
51 | "jest": "^24.9.0",
|
---|
52 | "prettier": "^1.18.2",
|
---|
53 | "pretty-quick": "^1.11.1",
|
---|
54 | "rimraf": "^3.0.0",
|
---|
55 | "rollup": "^1.20.3",
|
---|
56 | "rollup-plugin-typescript2": "^0.24.0",
|
---|
57 | "semantic-release": "^15.13.24",
|
---|
58 | "ts-jest": "^24.0.2",
|
---|
59 | "ts-node": "^8.3.0",
|
---|
60 | "tslint": "^5.19.0",
|
---|
61 | "tslint-config-common": "^1.6.0",
|
---|
62 | "typescript": "^3.5.3"
|
---|
63 | },
|
---|
64 | "release": {
|
---|
65 | "verifyConditions": [
|
---|
66 | "@semantic-release/changelog",
|
---|
67 | "@semantic-release/npm",
|
---|
68 | "@semantic-release/git"
|
---|
69 | ],
|
---|
70 | "prepare": [
|
---|
71 | "@semantic-release/changelog",
|
---|
72 | "@semantic-release/npm",
|
---|
73 | "@semantic-release/git"
|
---|
74 | ]
|
---|
75 | },
|
---|
76 | "config": {
|
---|
77 | "commitizen": {
|
---|
78 | "path": "git-cz"
|
---|
79 | }
|
---|
80 | }
|
---|
81 | }
|
---|