This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.81 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
{
"name": "frame-cli",
"version": "0.0.11",
"description": "FRAME - Create a new React/Preact Project from the CLI.",
"main": "./build/cli.js",
"scripts": {
"test": "xo && ava",
"test:watch": "ava --watch --match='!*SKIP_WATCH*'",
"pretest": "npm run build",
"prepublish": "npm run build",
"build": "rimraf build && babel src --out-dir build",
"dev": "rimraf build && babel src --watch --out-dir build"
},
"bin": {
"frame": "./build/bin/frame.js"
},
"files": [
"build",
"templates"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ntwcklng/frame.git"
},
"engines": {
"node": ">=6.2.0"
},
"ava": {
"failFast": true,
"files": "test/*.js",
"source": [
"src/**/*.js",
"!build/**/*"
]
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime",
"transform-async-to-generator"
]
},
"xo": {
"esnext": true,
"semicolon": false,
"space": 2,
"ignores": [
"build/**",
"templates/**"
]
},
"keywords": [],
"author": "Marvin Mieth <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ntwcklng/frame/issues"
},
"homepage": "https://github.com/ntwcklng/frame#readme",
"dependencies": {
"boxen": "^1.0.0",
"chalk": "^2.1.0",
"copy-template-dir": "^1.3.0",
"glob": "^7.1.1",
"inquirer": "^5.0.0",
"minimist": "^1.2.0",
"ora": "^1.0.0",
"rimraf": "^2.5.4",
"temp": "^0.8.3",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"xo": "^0.22.0"
}
}