-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.42 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
{
"name": "@hackforplay/next",
"version": "0.9.2",
"description": "Experiment",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier 'src/**/*.ts' --write",
"test": "ava",
"prepublish": "prettier --list-different 'src/**/*.ts' && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackforplay/next.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"hackforplay"
],
"author": "teramotodaiki",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackforplay/next/issues"
},
"homepage": "https://github.com/hackforplay/next#readme",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/jsdom": "^11.0.6",
"@types/parse5": "^4.0.0",
"ava": "^2.2.0",
"canvas": "^2.4.1",
"esm": "^3.2.25",
"fs-extra": "^6.0.1",
"jsdom": "^15.0.0",
"np": "^6.5.0",
"prettier": "^1.13.5",
"request": "^2.88.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"ava": {
"files": [
"src/**/*.spec.ts"
],
"compileEnhancements": false,
"babel": false,
"extensions": [
"ts",
"js"
],
"require": [
"ts-node/register",
"esm"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@types/lodash": "^4.14.161",
"@types/lodash-es": "^4.17.3",
"@types/node": "^12.6.8",
"lodash-es": "^4.17.14"
}
}