-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "create-cycle-app",
"version": "3.0.0",
"description": "Create Cycle.js apps with zero configuration.",
"private": true,
"scripts": {
"update-authors": "./bin/update-authors.sh",
"precommit": "standard && npm run test",
"postinstall": "lerna bootstrap",
"test": "lerna run test",
"publish": "lerna publish",
"updated": "lerna updated"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclejs-community/create-cycle-app.git"
},
"author": "Geovani Souza <[email protected]>",
"contributors": [
{
"name": "Geovani Souza",
"email": "[email protected]"
},
{
"name": "Nick Balestra",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/cyclejs-community/create-cycle-app/issues"
},
"homepage": "https://github.com/cyclejs-community/create-cycle-app#readme",
"standard": {
"globals": [
"describe",
"test",
"it",
"expect",
"jest",
"beforeEach",
"afterEach"
]
},
"devDependencies": {
"husky": "^0.13.1",
"lerna": "2.0.0-beta.36",
"standard": "^8.3.0"
}
}