This repository has been archived by the owner on May 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
{
"name": "bcdice-js",
"version": "0.11.0",
"description": "BCDice for JavaScript",
"main": "lib/index.js",
"scripts": {
"build": "run-s build:*",
"build:rake": "bundle exec rake",
"build:babel": "babel -s true -d lib src --ignore *.test.js",
"bundle:install": "bundle install",
"clean": "run-s clean:*",
"clean:coverage": "rimraf coverage",
"clean:rake": "bundle exec rake clean",
"lint": "eslint src",
"prepack": "run-s bundle:install clean build",
"test": "run-s test:*",
"test:eslint": "eslint src",
"test:jest": "jest",
"version": "update-changelog && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ukatama/bcdice-js.git"
},
"keywords": [
"BCDice",
"JavaScript",
"browser"
],
"author": "ukatama",
"license": "MIT",
"bugs": {
"url": "https://github.com/ukatama/bcdice-js/issues"
},
"homepage": "https://github.com/ukatama/bcdice-js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^3.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"update-changelog": "^1.0.1"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"lib"
]
},
"dependencies": {
"babel-jest": "^23.6.0"
}
}