-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.25 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
{
"name": "luminol",
"version": "1.1.0",
"author": "Izaak Schroeder <[email protected]>",
"license": "CC0-1.0",
"repository": "metalabdesign/luminol",
"scripts": {
"prepublish": "npm run clean && npm run build && npm run import && chmod +x ./bin/*.js",
"clean": "./node_modules/.bin/rimraf lib ./*.js ./*.map ./*.flow bin runtime internal",
"build": "./node_modules/.bin/babel --copy-files --ignore '**/__tests__' -s -d lib src",
"import": "./node_modules/.bin/ncp lib .",
"test:lint": "./node_modules/.bin/eslint .",
"test:smoke": "echo 'todo'",
"test:flow": "./node_modules/.bin/flow check",
"test:spec": "NODE_ENV=test ./node_modules/.bin/jest --coverage",
"test": "npm run test:lint && npm run test:spec && npm run test:smoke"
},
"bin": {
"luminol": "bin/luminol.js"
},
"dependencies": {
"apollo-cache-inmemory": "1.3.12",
"apollo-client": "2.4.8",
"apollo-link-ws": "1.0.12",
"apollo-server-core": "2.3.1",
"backo2": "1.0.2",
"chokidar": "2.0.4",
"clipboardy": "1.2.3",
"color-hash": "1.0.3",
"cuid": "2.1.4",
"debug": "4.1.1",
"graphql": "14.0.2",
"graphql-subscriptions": "1.0.0",
"graphql-tools": "4.0.3",
"midori": "3.3.0",
"mime-types": "2.1.21",
"openport": "0.0.6",
"opn": "5.4.0",
"pidusage": "2.0.17",
"resolve": "1.9.0",
"subscriptions-transport-ws": "0.9.15",
"ws": "6.1.2",
"yargs": "12.0.5"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-syntax-flow": "7.2.0",
"@babel/plugin-syntax-object-rest-spread": "7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-plugin-graphql-tag": "1.6.0",
"babel-plugin-module-resolver": "3.1.1",
"bl": "2.1.2",
"eslint": "5.12.0",
"eslint-config-metalab": "10.0.0",
"flow-bin": "0.90.0",
"graphql-tag": "2.10.0",
"jest": "23.6.0",
"ncp": "2.0.0",
"prettier": "1.15.3"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.js"
]
}
}