UNPKG

1.52 kBJSONView Raw
1{
2 "name": "gs-weblang-core",
3 "version": "2.0.1",
4 "description": "Gobstones parser and interpreter",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/gobstones/gs-weblang-core.git"
8 },
9 "files": [
10 "umd",
11 "README.md"
12 ],
13 "main": "index.js",
14 "keywords": [
15 "gobstones",
16 "interpreter"
17 ],
18 "author": "",
19 "license": "MIT",
20 "scripts": {
21 "commit": "git-cz",
22 "test": "xo && nyc ava && nyc report --reporter=text-lcov | coveralls",
23 "build": "npm-run-all --parallel build:*",
24 "start": "webpack --progress --colors --watch & webpack-dev-server --progress --colors",
25 "build:umd": "webpack",
26 "build:umd.min": "webpack --output-file index.umd.min.js -p",
27 "semantic-release": "semantic-release pre && npm publish && semantic-release post"
28 },
29 "devDependencies": {
30 "ava": "^0.15.2",
31 "commitizen": "^2.8.1",
32 "coveralls": "^2.11.13",
33 "cz-conventional-changelog": "^1.2.0",
34 "npm-install-webpack-plugin": "^4.0.4",
35 "npm-run-all": "^3.1.0",
36 "nyc": "^8.3.0",
37 "semantic-release": "^6.3.0",
38 "style-loader": "^0.13.1",
39 "webpack": "^1.13.2",
40 "webpack-dev-server": "^1.15.2",
41 "webpack-merge": "^0.14.1",
42 "xo": "^0.16.0"
43 },
44 "dependencies": {
45 "lodash": "^4.17.2"
46 },
47 "xo": {
48 "space": 4,
49 "ignores": [
50 "lib/locales/**",
51 "tools/**",
52 "umd/**",
53 "newlib/**"
54 ]
55 },
56 "config": {
57 "commitizen": {
58 "path": "./node_modules/cz-conventional-changelog"
59 }
60 }
61}