-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpackage.json
87 lines (87 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mappa-mundi",
"version": "0.0.4",
"description": "An addon to facilitate work between p5 and existing map libraries and APIs.",
"main": "dist/mappa.js",
"directories": {
"examples": "examples",
"dist": "dist",
"test": "test"
},
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 0 --branch 0 --functions 0 --lines 0",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"watch:test": "npm t -- -w",
"test": "mocha test/index.test.js --compilers js:babel-register",
"cover": "nyc npm t",
"prebuild": "rimraf dist",
"build": "npm-run-all build:*",
"build:main": "webpack --output-filename mappa.js",
"build:min": "uglifyjs dist/mappa.js -o dist/mappa.min.js",
"build:copy2website": "rm website/static/js/mappa.min.js && mv dist/mappa.min.js website/static/js/",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cvalenzuela/Mappa.git"
},
"keywords": [
"p5.js",
"maps"
],
"author": "Cristobal Valenzuela <[email protected]> (https://github.com/cvalenzuela)",
"license": "ISC",
"bugs": {
"url": "https://github.com/cvalenzuela/Mappa/issues"
},
"homepage": "https://github.com/cvalenzuela/Mappa#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-loader": "7.0.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.24.1",
"chai": "4.0.2",
"chai-as-promised": "7.1.1",
"codecov": "2.2.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "4.15.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"ghooks": "2.0.0",
"html-loader": "0.4.5",
"istanbul": "0.4.5",
"jsdom": "11.1.0",
"jsdom-global": "3.0.2",
"json-loader": "0.5.4",
"mocha": "3.4.2",
"npm-run-all": "4.0.2",
"nyc": "10.3.2",
"raw-loader": "0.5.1",
"rimraf": "2.6.1",
"semantic-release": "6.3.6",
"uglify-es": "3.0.28",
"webpack": "2.6.1",
"webpack-dev-server": "2.4.5"
},
"config": {
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"files": [
"dist",
"README.md"
],
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}