This repository has been archived by the owner on Jul 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.86 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@decsys/rating-scales",
"version": "1.0.2",
"description": "Reusable React Components for Rating Scales as used by the DECSYS Project",
"main": "cjs/decsys.rating-scales.js",
"browser": "umd/decsys.rating-scales.js",
"module": "esm/decsys.rating-scales.js",
"files": [
"umd",
"cjs",
"esm"
],
"publishConfig": {
"access": "public"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js"
}
},
"scripts": {
"rollup": "rollup -c",
"lint": "eslint src/**/*.js",
"build": "npm run lint && npm run rollup",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "styleguidist build",
"watch": "npm-watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": [
"@universityofnottingham",
"plugin:react/recommended"
],
"settings": {
"react": {
"version": "16.0"
}
}
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/decsys/rating-scales.git"
},
"author": "Jonathan Couldridge <[email protected]>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/decsys/rating-scales/issues"
},
"homepage": "https://github.com/decsys/rating-scales#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/standalone": "^7.8.4",
"@universityofnottingham/eslint-config": "^1.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.18.3",
"husky": "^1.3.1",
"npm-watch": "^0.4.0",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-styleguidist": "^10.6.2",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"styled-components": "^4.4.1",
"webpack": "^4.41.6"
},
"peerDependencies": {
"react": "~16",
"styled-components": "~4"
},
"dependencies": {
"@pixi/app": "^5.2.1",
"@pixi/constants": "^5.2.1",
"@pixi/core": "^5.2.1",
"@pixi/display": "^5.2.1",
"@pixi/graphics": "^5.2.1",
"@pixi/interaction": "^5.2.1",
"@pixi/math": "^5.2.1",
"@pixi/runner": "^5.2.1",
"@pixi/settings": "^5.2.1",
"@pixi/ticker": "^5.2.1",
"@pixi/utils": "^5.2.1",
"colornames": "^1.1.1",
"prop-types": "^15.7.2",
"unit-value": "^1.0.1"
}
}