-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "circularity",
"version": "0.4.0",
"description": "a radial menu built in react",
"main": "dist/index.js",
"scripts": {
"test": "jest src",
"build": "rm -rf dist && babel src --out-dir dist --ignore spec.js,test.js",
"lint": "eslint src",
"checks": "yarn test && yarn run lint",
"prepublish": "yarn run checks && yarn run build",
"precommit": "yarn test",
"prepush": "yarn run checks",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ingenalls/circularity.git"
},
"keywords": [
"circularity",
"react",
"radial",
"menu",
"radialmenu"
],
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"coveralls": "^2.11.16",
"eslint": "^3.16.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.1",
"husky": "^0.13.1",
"jest": "^19.0.2",
"react-test-renderer": "^15.4.2"
},
"dependencies": {
"react": "^15.4.2"
},
"babel": {
"presets": [
"latest",
"stage-0",
"react"
]
},
"author": "Andrée Björkgård",
"license": "MIT",
"bugs": {
"url": "https://github.com/ingenalls/circularity/issues"
},
"homepage": "https://github.com/ingenalls/circularity#readme"
}