-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.94 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
{
"name": "frostbite-rcon-utils",
"version": "3.0.1",
"description": "frostbite-rcon-utils",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"lint": "eslint src test examples",
"test": "NODE_ENV=test mocha",
"test:watch": "NODE_ENV=test mocha --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"coveralls": "coveralls < coverage/lcov.info",
"docs:clean": "rimraf _book",
"docs:build": "gitbook build .",
"docs:watch": "gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'Update docs' && git push [email protected]:edvinerikson/frostbite-rcon-utils-node gh-pages --force",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/edvinerikson/frostbite-rcon-utils-node.git"
},
"keywords": [
"frostbite",
"rcon",
"encoder",
"decoder",
"battlefield"
],
"author": "Edvin Wennerdahl Eriksson",
"license": "MIT",
"bugs": {
"url": "https://github.com/edvinerikson/frostbite-rcon-utils-node/issues"
},
"homepage": "https://github.com/edvinerikson/frostbite-rcon-utils-node",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"coveralls": "^2.11.9",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-react": "^5.0.1",
"expect": "^1.18.0",
"gitbook-cli": "^2.1.3",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}