-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "tagprobot",
"version": "0.1.0",
"description": "A bot to play TagPro",
"scripts": {
"start": "webpack --watch",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"test": "babel-tape-runner \"src/**/test/*.js\" | tap-difflet --pessimistic",
"test:o": "babel-tape-runner \"src/**/test/*.js\" | tap-difflet",
"test:raw": "babel-tape-runner \"src/**/test/*.js\"",
"build": "webpack --watch",
"build:once": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chauncy-crib/tagprobot.git"
},
"author": "chauncy",
"license": "ISC",
"bugs": {
"url": "https://github.com/chauncy-crib/tagprobot/issues"
},
"homepage": "https://github.com/chauncy-crib/tagprobot#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.26.3",
"babel-loader": "7.1.1",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-rewire": "1.1.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"babel-tape-runner": "2.0.1",
"eslint": "4.7.0",
"eslint-config-airbnb-base": "12.0.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.7.0",
"raw-loader": "0.5.1",
"sinon": "5.0.7",
"tap-difflet": "0.7.0",
"tap-webpack-plugin": "2.0.0",
"tape": "4.7.0",
"webpack": "4.8.1",
"webpack-cli": "2.1.3"
},
"dependencies": {
"@tyriar/fibonacci-heap": "2.0.7",
"date-fns": "1.28.5",
"file-saver": "1.3.8",
"flatted": "0.2.1",
"lodash": "4.17.10",
"mathjs": "4.2.2",
"webworkify-webpack": "2.1.2"
}
}