-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
144 lines (144 loc) · 3.89 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "roc",
"version": "1.0.0-rc.23",
"description": "Modern JavasScript Development Ecosystem",
"license": "MIT",
"main": "lib/index.js",
"bin": "bin/index.js",
"engineStrict": true,
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"files": [
"converters",
"validators",
"runtime",
"log",
"bin",
"lib",
"scripts"
],
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"build:watch": "npm run build -- --watch",
"clean": "rimraf lib esdocs coverage",
"lint": "eslint .",
"test": "npm run lint && npm run test:coverage",
"test:coverage": "cross-env NODE_ENV=test nyc mocha --compilers js:babel-register test --recursive",
"test:unit": "cross-env NODE_ENV=test mocha --compilers js:babel-register test --recursive",
"test:unit:watch": "npm run test:unit -- --watch",
"check": "ncu",
"docs": "node scripts/generate-documentation.js",
"esdocs": "esdoc -c esdoc.json",
"prepublish": "npm run clean && npm run build && npm test",
"postinstall": "node ./scripts/post-install.js"
},
"repository": "https://github.com/rocjs/roc",
"keywords": [
"roc",
"react",
"universal",
"isomorphic",
"build",
"cli",
"redux"
],
"author": "Verdens Gang AS",
"contributors": [
{
"name": "Gustaf Dalemar"
},
{
"name": "Andreas Søvik"
}
],
"devDependencies": {
"babel-cli": "~6.4.5",
"babel-eslint": "~6.1.2",
"babel-plugin-istanbul": "1.0.3",
"babel-plugin-transform-async-to-generator": "6.8.0",
"babel-plugin-transform-es2015-destructuring": "~6.4.0",
"babel-plugin-transform-es2015-function-name": "~6.4.0",
"babel-plugin-transform-es2015-modules-commonjs": "~6.4.5",
"babel-plugin-transform-es2015-parameters": "~6.4.5",
"babel-plugin-transform-es2015-spread": "~6.5.0",
"babel-plugin-transform-es2015-sticky-regex": "~6.3.13",
"babel-plugin-transform-es2015-unicode-regex": "~6.4.3",
"babel-plugin-transform-export-extensions": "~6.5.0",
"babel-plugin-transform-object-rest-spread": "~6.3.13",
"babel-register": "~6.4.3",
"codeclimate-test-reporter": "~0.3.0",
"coveralls": "~2.11.6",
"cross-env": "1.0.7",
"eol": "0.2.0",
"esdoc": "~0.4.3",
"esdoc-es7-plugin": "0.0.3",
"esdoc-importpath-plugin": "0.0.1",
"eslint": "~3.0.1",
"eslint-config-airbnb-base": "~4.0.0",
"eslint-plugin-babel": "~3.3.0",
"eslint-plugin-import": "~1.10.2",
"expect": "~1.20.2",
"mocha": "~3.0.2",
"mute": "^2.0.6",
"npm-check-updates": "~2.5.6",
"nyc": "7.1.0",
"proxyquire": "1.7.10",
"rimraf": "~2.5.0"
},
"dependencies": {
"anchor-markdown-header": "0.5.5",
"archy": "1.0.0",
"async": "2.0.1",
"chalk": "~1.1.1",
"colors": "~1.1.2",
"cross-spawn": "2.2.3",
"debug": "2.2.0",
"download-git-repo": "0.1.2",
"escape-string-regexp": "^1.0.5",
"extract-zip": "1.5.0",
"fs-extra": "~0.26.4",
"git-clone": "0.1.0",
"got": "~6.1.1",
"handlebars": "4.0.5",
"inquirer": "~1.1.3",
"is-promise": "2.1.0",
"leven": "~2.0.0",
"lodash": "~4.13.1",
"log-symbols": "1.0.2",
"loud-rejection": "~1.3.0",
"manage-path": "2.0.0",
"merge-options": "0.0.64",
"metalsmith": "2.2.0",
"micromatch": "2.3.11",
"minimist": "~1.2.0",
"ora": "0.3.0",
"redent": "~1.0.0",
"resolve": "~1.1.6",
"semver": "5.1.0",
"shell-escape": "0.2.0",
"source-map-support": "~0.4.0",
"spawn-command": "0.0.2-1",
"strip-ansi": "~3.0.0",
"temp": "~0.8.3",
"trim-newlines": "~1.0.0",
"unzip": "^0.1.11",
"update-notifier": "0.6.3",
"validate-npm-package-name": "2.2.2"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false,
"instrument": false
}
}