forked from processing/p5.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.34 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "p5",
"repository": "processing/p5.js",
"scripts": {
"grunt": "grunt",
"build": "grunt build",
"dev": "grunt browserify connect:yui watch:quick",
"docs": "grunt yui",
"docs:dev": "grunt yui:dev",
"test": "grunt",
"lint": "grunt lint-no-fix",
"lint:fix": "grunt lint-fix",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"generate": "all-contributors generate",
"precommit": "lint-staged"
},
"lint-staged": {
"ignore": [
"test/js/**/*.js"
],
"Gruntfile.js": "eslint",
"grunt-karma.js": "eslint",
"docs/preprocessor.js": "eslint",
"utils/**/*.js": "eslint",
"tasks/**/*.js": "eslint",
"bench/**/*.js": "eslint",
"test/**/*.js": "eslint",
"lib/addons/p5.dom.js": [
"eslint",
"node ./utils/sample-linter.js"
],
"src/**/*.js": [
"eslint",
"node ./utils/sample-linter.js"
]
},
"version": "0.7.3",
"devDependencies": {
"all-contributors-cli": "^5.11.0",
"brfs": "^2.0.2",
"browserify": "^16.2.3",
"chai": "^3.5.0",
"connect-modrewrite": "^0.10.1",
"derequire": "^2.0.0",
"es6-promise": "^4.2.6",
"eslint": "^5.14.1",
"eslint-config-prettier": "2.7.0",
"eslint-plugin-prettier": "2.3.1",
"esprima-extract-comments": "^0.2.1",
"eventhandler": "^2.1.0",
"fetch-jsonp": "^1.1.3",
"file-saver": "^1.3.8",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-contrib-yuidoc": "1.0.0",
"grunt-eslint": "^20.2.0",
"grunt-karma": "^3.0.1",
"grunt-minjson": "^0.4.0",
"grunt-mocha-test": "^0.13.3",
"grunt-newer": "^1.1.0",
"grunt-release-it": "^1.0.1",
"grunt-saucelabs": "^9.0.1",
"html2plaintext": "^1.1.1",
"husky": "^0.14.3",
"karma": "^3.1.4",
"karma-benchmark": "^1.0.1",
"karma-benchmark-reporter": "^0.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.3.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"libtess": "^1.2.2",
"lint-staged": "^4.3.0",
"marked": "^0.3.19",
"mocha": "^5.2.0",
"opentype.js": "^0.9.0",
"postinstall-prepare": "^1.0.1",
"prettier": "^1.7.4",
"promise-map-series": "^0.2.3",
"puppeteer": "^1.12.2",
"request": "^2.88.0",
"whatwg-fetch": "^2.0.4",
"word-wrap": "^1.2.3"
},
"license": "LGPL-2.1",
"main": "./lib/p5.js",
"files": [
"license.txt",
"lib/p5.min.js",
"lib/p5.js",
"lib/addons/p5.sound.js",
"lib/addons/p5.sound.min.js",
"lib/addons/p5.dom.js",
"lib/addons/p5.dom.min.js"
],
"description": "[![Build Status](https://travis-ci.org/processing/p5.js.svg?branch=master)](https://travis-ci.org/processing/p5.js) [![npm version](https://badge.fury.io/js/p5.svg)](https://www.npmjs.com/package/p5)",
"bugs": {
"url": "https://github.com/processing/p5.js/issues"
},
"homepage": "https://github.com/processing/p5.js#readme",
"directories": {
"doc": "docs",
"test": "test"
},
"author": "",
"dependencies": {}
}