-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.64 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
{
"name": "lighty",
"version": "1.0.0-8",
"description": "The tiny engine for your handy microframework",
"license": "MIT",
"homepage": "https://github.com/demiazz/lighty",
"bugs": {
"url": "https://github.com/demiazz/lighty/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/demiazz/lighty"
},
"author": {
"name": "Alexey Plutalov",
"email": "[email protected]"
},
"main": "lib/lighty.js",
"module": "lib-es/lighty.js",
"typings": "d.ts/lighty.d.ts",
"files": [
"d.ts/*.ts",
"dist/*.js",
"dist/*.map",
"flow-typed/*.js",
"lib/*.js",
"lib-es/*.js",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"test": "$(yarn bin)/brandon test",
"test:watch": "$(yarn bin)/brandon test -- --watch",
"test:ci": "$(yarn bin)/brandon test-ci",
"build": "$(yarn bin)/brandon build",
"docs": "$(yarn bin)/brandon documentation",
"version": "yarn run build && yarn run docs && git add -A README.md",
"lint-staged": "$(yarn bin)/lint-staged"
},
"lint-staged": {
"d.ts/*.ts": [
"prettier --write"
],
"flow-typed/*.js": [
"prettier --write",
"eslint",
"git add"
],
"{spec,src}/**/*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"pre-commit": [
"test",
"lint-staged"
],
"browserslist": [
"last 3 Chrome major versions",
"last 3 Firefox major versions",
"last 3 Edge major versions",
"last 3 Explorer major versions",
"last 3 Safari major versions",
"last 3 iOS major versions"
],
"devDependencies": {
"@demiazz/brandon": "3.0.0"
}
}