forked from twilio-labs/open-pixel-art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "open-pixel-art",
"version": "1.0.0",
"private": true,
"description": "A project to teach people how to do their first pull request",
"scripts": {
"start": "eleventy --serve",
"build": "eleventy",
"format:json": "node tasks/sortPixels.js",
"prettier": "prettier --write \"**/*.js\"",
"pretest": "run-s format:json prettier",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twilio-labs/open-pixel-art.git"
},
"keywords": [],
"author": "Twilio Labs <[email protected]> (https://twilio.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/twilio-labs/open-pixel-art/issues"
},
"homepage": "https://github.com/twilio-labs/open-pixel-art#readme",
"devDependencies": {
"@11ty/eleventy": "^0.9.0",
"@types/jest": "^24.0.18",
"common-tags": "^1.8.0",
"danger": "^9.2.0",
"dot-prop": "^5.1.0",
"jest": "^24.9.0",
"json-stringify-pretty-compact": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2"
},
"dependencies": {
"nes.css": "^2.2.0"
}
}