forked from project-slippi/slippi-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.9 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
{
"name": "slp-parser-js",
"version": "2.2.0",
"description": "Official javascript slp file parser",
"license": "MIT",
"repository": "JLaferri/slp-parser-js",
"main": "index.js",
"author": {
"name": "Jas Laferriere",
"email": "[email protected]",
"url": "https://github.com/JLaferri"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"index.js"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint src test",
"flow": "flow check",
"docs": "documentation readme src --section=API",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "babel src -d dist",
"watch": "npm-watch",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublish": "yarn lint && npm test && yarn build",
"postpublish": "git push origin master --follow-tags"
},
"watch": {
"test": "{src,test}/*.js",
"lint": "{src,test}/*.js",
"build": "src"
},
"jest": {
"testRegex": "/test/.*",
"testEnvironment": "node"
},
"keywords": [
"slp-parser-js"
],
"dependencies": {
"iconv-lite": "^0.4.24",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"documentation": "^9.3.0",
"eslint": "^5.15.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-flowtype-errors": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"flow-bin": "^0.94.0",
"jest-cli": "^24.1.0",
"npm-watch": "^0.6.0",
"opn-cli": "^4.0.0",
"rimraf": "^2.6.3"
}
}