-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 2.32 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
{
"name": "react-gtk",
"version": "0.1.0",
"description": "React renderer for gtk applications inside gjs",
"main": "src/index.js",
"scripts": {
"start": "webpack --config example/webpack.config.js && gjs example/dist/app.js",
"test": "npm run lint && nyc npm run test:unit && npm run test:functional",
"lint": "eslint .",
"test:unit": "mocha 'test/unit/**/*.js'",
"build:functional": "webpack --config test/functional/webpack.config.js",
"test:functional": "npm run build:functional && nix-build test/functional -A test"
},
"keywords": [
"gtk",
"react"
],
"author": "",
"license": "MIT",
"dependencies": {
"just-camel-case": "^1.0.0",
"just-kebab-case": "^1.0.0",
"ramda": "0.24.1",
"react": "16.2.0",
"react-reconciler": "0.7.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.7.0",
"eslint-config-holidaycheck": "^0.12.1",
"mocha": "^3.5.0",
"nyc": "^11.2.1",
"sinon": "^3.2.1",
"webpack": "3.5.5"
},
"eslintConfig": {
"extends": "holidaycheck/es2015",
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"max-params": [
"error",
6
],
"max-statements": [
"error",
15
],
"no-process-env": 0
},
"overrides": [
{
"files": [
"test/functional/**/*.js",
"example/**/*.js",
"src/index.js"
],
"globals": {
"imports": false,
"print": false
}
},
{
"files": [
"test/unit/**/*.js"
],
"env": {
"mocha": true
},
"rules": {
"camelcase": 0,
"no-new": 0,
"max-statements": [
"error",
15
]
}
}
]
},
"eslintIgnore": [
"test-output/**/*",
"result/**/*",
"node_modules/**/*",
"**/dist/**/*"
],
"nyc": {
"cache": false,
"all": true,
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./test-output/nyc"
}
}