-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.68 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
{
"name": "react-chipman",
"version": "0.0.0-semantically-released",
"description": "A React component for managing an ordered list of chips.",
"author": "baddlan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/baddlan/react-chipman.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"typings": "dist/out-tsc/index.d.ts",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"scripts": {
"build": "rollup -c && tsc",
"clean": "rimraf ./dist ./build ./example/dist ./example/build",
"commit": "yarn commit",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"start": "rollup -c -w",
"prepare": "yarn run build",
"docs:build": "cd example && yarn install && yarn run build",
"docs:publish": "gh-pages -d example/build",
"semantic-release": "semantic-release",
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom"
},
"dependencies": {},
"peerDependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.5.4",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-smooth-dnd": "^0.11.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/prompt-cli": "^8.3.4",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^6.1.0",
"@rollup/plugin-typescript": "^2.1.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/exec": "^4.0.0",
"@semantic-release/git": "^8.0.0",
"@types/jest": "^23.1.5",
"@types/lodash": "^4.14.149",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.15.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.4",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.17.0",
"gh-pages": "^2.2.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.4.1",
"react-scripts-ts": "^3.1.0",
"react-smooth-dnd": "^0.11.1",
"rimraf": "^3.0.0",
"rollup": "^1.28.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-url": "^3.0.1",
"semantic-release": "^16.0.1",
"typescript": "^3.0.0"
},
"files": [
"dist"
],
"lint-staged": {
"src/*.ts": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}