forked from twilio-labs/open-pixel-art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "open-pixel-art",
"version": "1.0.0",
"private": true,
"description": "A project to teach people how to do their first pull request",
"scripts": {
"configure:merge-driver": "node scripts/configureMergeDriver.js",
"sync-fork": "node scripts/sync.js",
"format:sort-pixels": "node scripts/sortPixels.js",
"sort:open-pixels": "node scripts/sortPixels.js",
"lint-staged": "lint-staged",
"start": "eleventy --serve",
"build": "eleventy",
"prettier": "prettier --write \"**/*.js\"",
"test": "jest",
"test:pixeldata": "jest data.test.js",
"postinstall": "npm run configure:merge-driver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twilio-labs/open-pixel-art.git"
},
"keywords": [],
"author": "Twilio Labs <open-source@twilio.com> (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.11.0",
"@types/jest": "^24.0.18",
"common-tags": "^1.8.0",
"danger": "^10.0.0",
"dot-prop": "^5.1.0",
"execa": "^2.1.0",
"husky": "^3.0.8",
"jest": "^26.0.1",
"json-stringify-pretty-compact": "^2.0.0",
"lint-staged": "^9.4.1",
"mock-fs": "^5.1.2",
"npm-run-all": "^4.1.5",
"ora": "^4.0.2",
"prettier": "^1.18.2"
},
"dependencies": {
"nes.css": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add",
"jest --findRelatedTests"
],
"_data/pixels.json": [
"node scripts/sortPixels.js",
"git add",
"npm run test:pixeldata"
]
}
}