forked from processing/p5.js
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
117 lines (117 loc) · 3.45 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
117
{
"name": "p5",
"repository": "processing/p5.js",
"scripts": {
"grunt": "grunt",
"build": "grunt build",
"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",
"postinstall": "patch-package",
"generate": "all-contributors generate",
"precommit": "lint-staged"
},
"lint-staged": {
"Gruntfile.js": "eslint",
"grunt-karma.js": "eslint",
"docs/preprocessor.js": "eslint",
"utils/**/*.js": "eslint",
"tasks/**/*.js": "eslint",
"bench/**/*.js": "eslint",
"test/test-docs-preprocessor/**/*.js": "eslint",
"test/node/**/*.js": "eslint",
"test/reporter/**/*.js": "eslint",
"test/unit/**/*.js": "eslint",
"lib/addons/p5.dom.js": [
"eslint",
"node ./utils/sample-linter.js"
],
"src/**/*.js": [
"eslint",
"node ./utils/sample-linter.js"
]
},
"version": "0.6.1",
"devDependencies": {
"all-contributors-cli": "^4.5.0",
"brfs": "^1.4.3",
"browserify": "^11.0.1",
"chai": "^3.5.0",
"connect-modrewrite": "^0.10.1",
"derequire": "^2.0.0",
"es6-promise": "^4.1.1",
"eslint": "^4.9.0",
"eslint-config-prettier": "2.7.0",
"eslint-plugin-prettier": "2.3.1",
"esprima-extract-comments": "^0.2.1",
"fetch-jsonp": "^1.1.3",
"file-saver": "^1.3.3",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-connect": "^0.9.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.7.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-yuidoc": "1.0.0",
"grunt-eslint": "^20.1.0",
"grunt-jscs": "^3.0.1",
"grunt-karma": "^2.0.0",
"grunt-minjson": "^0.4.0",
"grunt-mocha-test": "^0.13.3",
"grunt-newer": "^1.1.0",
"grunt-open": "^0.2.3",
"grunt-release-it": "^1.0.1",
"grunt-saucelabs": "8.6.1",
"grunt-update-json": "^0.2.1",
"html2plaintext": "^1.1.1",
"husky": "^0.14.3",
"karma": "^2.0.2",
"karma-benchmark": "^0.7.1",
"karma-benchmark-reporter": "^0.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.2.5",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"lint-staged": "^4.3.0",
"marked": "^0.3.9",
"opentype.js": "^0.9.0",
"patch-package": "^5.1.1",
"mocha": "^3.2.0",
"mocha-chrome": "^0.2.1",
"postinstall-prepare": "^1.0.1",
"prettier": "^1.7.4",
"request": "^2.81.0",
"whatwg-fetch": "^2.0.3",
"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": ""
}