forked from francoischalifour/react-metronome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 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
{
"name": "react-metronome",
"license": "MIT",
"description": "React primitives for building metronomes",
"version": "0.1.0",
"author": {
"name": "Francois Chalifour",
"email": "[email protected]",
"url": "https://francoischalifour.com"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"commit": "git-cz",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"format": "prettier --write 'src/**/*.js'",
"test": "jest",
"test:watch": "npm run test -- --watch",
"start": "cross-env NODE_ENV=development rollup --config --watch",
"dev": "npm run start",
"prebuild": "npm run lint && npm run test && rimraf dist",
"build": "cross-env NODE_ENV=production rollup --config",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/francoischalifour/react-metronome"
},
"bugs": {
"url": "https://github.com/francoischalifour/react-metronome/issues"
},
"homepage": "https://github.com/francoischalifour/react-metronome#readme",
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"commitizen": "^2.9.6",
"cross-env": "^5.1.1",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.3",
"prettier": "^1.9.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.52.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}