UNPKG

4 kBJSONView Raw
1{
2 "name": "roc",
3 "version": "1.0.0-rc.18",
4 "description": "Modern JavasScript Development Ecosystem",
5 "license": "MIT",
6 "main": "lib/index.js",
7 "bin": "bin/index.js",
8 "engineStrict": true,
9 "engines": {
10 "node": ">=4.0.0",
11 "npm": ">=3.0.0"
12 },
13 "files": [
14 "converters",
15 "validators",
16 "runtime",
17 "log",
18 "bin",
19 "lib",
20 "scripts"
21 ],
22 "scripts": {
23 "build": "babel src --out-dir lib --source-maps",
24 "build:watch": "npm run build -- --watch",
25 "clean": "rimraf lib esdocs coverage",
26 "lint": "eslint .",
27 "test": "npm run lint && npm run test:coverage",
28 "test:coverage": "cross-env NODE_ENV=test nyc mocha --compilers js:babel-register test --recursive",
29 "test:unit": "cross-env NODE_ENV=test mocha --compilers js:babel-register test --recursive",
30 "test:unit:watch": "npm run test:unit -- --watch",
31 "check": "ncu",
32 "docs": "node scripts/generate-documentation.js",
33 "esdocs": "esdoc -c esdoc.json",
34 "prepublish": "npm run clean && npm run build && npm test",
35 "postinstall": "node ./scripts/post-install.js"
36 },
37 "repository": "https://github.com/rocjs/roc",
38 "keywords": [
39 "roc",
40 "react",
41 "universal",
42 "isomorphic",
43 "build",
44 "cli",
45 "redux"
46 ],
47 "author": "Verdens Gang AS",
48 "contributors": [
49 {
50 "name": "Gustaf Dalemar"
51 },
52 {
53 "name": "Andreas Søvik"
54 }
55 ],
56 "devDependencies": {
57 "babel-cli": "~6.4.5",
58 "babel-eslint": "~6.1.2",
59 "babel-plugin-istanbul": "1.0.3",
60 "babel-plugin-transform-async-to-generator": "6.8.0",
61 "babel-plugin-transform-es2015-destructuring": "~6.4.0",
62 "babel-plugin-transform-es2015-function-name": "~6.4.0",
63 "babel-plugin-transform-es2015-modules-commonjs": "~6.4.5",
64 "babel-plugin-transform-es2015-parameters": "~6.4.5",
65 "babel-plugin-transform-es2015-spread": "~6.5.0",
66 "babel-plugin-transform-es2015-sticky-regex": "~6.3.13",
67 "babel-plugin-transform-es2015-unicode-regex": "~6.4.3",
68 "babel-plugin-transform-export-extensions": "~6.5.0",
69 "babel-plugin-transform-object-rest-spread": "~6.3.13",
70 "babel-register": "~6.4.3",
71 "codeclimate-test-reporter": "~0.3.0",
72 "coveralls": "~2.11.6",
73 "cross-env": "1.0.7",
74 "eol": "0.2.0",
75 "esdoc": "~0.4.3",
76 "esdoc-es7-plugin": "0.0.3",
77 "esdoc-importpath-plugin": "0.0.1",
78 "eslint": "~3.0.1",
79 "eslint-config-airbnb-base": "~4.0.0",
80 "eslint-plugin-babel": "~3.3.0",
81 "eslint-plugin-import": "~1.10.2",
82 "expect": "~1.20.2",
83 "mocha": "~3.0.2",
84 "npm-check-updates": "~2.5.6",
85 "nyc": "7.1.0",
86 "proxyquire": "1.7.10",
87 "rimraf": "~2.5.0"
88 },
89 "dependencies": {
90 "anchor-markdown-header": "0.5.5",
91 "archy": "1.0.0",
92 "async": "2.0.1",
93 "chalk": "~1.1.1",
94 "colors": "~1.1.2",
95 "consolidate": "0.14.1",
96 "cross-spawn": "2.2.3",
97 "debug": "2.2.0",
98 "download-git-repo": "0.1.2",
99 "escape-string-regexp": "^1.0.5",
100 "extract-zip": "1.5.0",
101 "fs-extra": "~0.26.4",
102 "git-clone": "0.1.0",
103 "got": "~6.1.1",
104 "handlebars": "4.0.5",
105 "inquirer": "~1.1.3",
106 "is-promise": "2.1.0",
107 "leven": "~2.0.0",
108 "lodash": "~4.13.1",
109 "log-symbols": "1.0.2",
110 "loud-rejection": "~1.3.0",
111 "manage-path": "2.0.0",
112 "merge-options": "0.0.64",
113 "metalsmith": "2.2.0",
114 "micromatch": "2.3.11",
115 "minimist": "~1.2.0",
116 "ora": "0.3.0",
117 "redent": "~1.0.0",
118 "resolve": "~1.1.6",
119 "semver": "5.1.0",
120 "shell-escape": "0.2.0",
121 "source-map-support": "~0.4.0",
122 "spawn-command": "0.0.2-1",
123 "strip-ansi": "~3.0.0",
124 "temp": "~0.8.3",
125 "trim-newlines": "~1.0.0",
126 "unzip": "^0.1.11",
127 "update-notifier": "0.6.3",
128 "validate-npm-package-name": "2.2.2"
129 },
130 "nyc": {
131 "include": [
132 "src/**/*.js"
133 ],
134 "require": [
135 "babel-register"
136 ],
137 "reporter": [
138 "lcov",
139 "text-summary"
140 ],
141 "sourceMap": false,
142 "instrument": false
143 }
144}