aboutsummaryrefslogtreecommitdiff
path: root/node_modules/normalize-package-data/test/fixtures
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-04-20 03:09:25 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-04-24 16:14:29 +0200
commit82f2b76e25a4a67e01ec67e5ebe39d14ad771ea8 (patch)
tree965f6eb89b84d65a62b49008fd972c004832ccd1 /node_modules/normalize-package-data/test/fixtures
parente6e0cbc387c2a77b48e4065c229daa65bf1aa0fa (diff)
Reorganize module loading.
We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node.
Diffstat (limited to 'node_modules/normalize-package-data/test/fixtures')
-rw-r--r--node_modules/normalize-package-data/test/fixtures/async.json2
-rw-r--r--node_modules/normalize-package-data/test/fixtures/bcrypt.json2
-rw-r--r--node_modules/normalize-package-data/test/fixtures/coffee-script.json2
-rw-r--r--node_modules/normalize-package-data/test/fixtures/http-server.json8
-rw-r--r--node_modules/normalize-package-data/test/fixtures/movefile.json2
-rw-r--r--node_modules/normalize-package-data/test/fixtures/no-description.json2
-rw-r--r--node_modules/normalize-package-data/test/fixtures/node-module_exist.json2
-rw-r--r--node_modules/normalize-package-data/test/fixtures/npm.json2
-rw-r--r--node_modules/normalize-package-data/test/fixtures/request.json2
-rw-r--r--node_modules/normalize-package-data/test/fixtures/underscore.json2
10 files changed, 13 insertions, 13 deletions
diff --git a/node_modules/normalize-package-data/test/fixtures/async.json b/node_modules/normalize-package-data/test/fixtures/async.json
index 5e652a6c6..9fa85b53e 100644
--- a/node_modules/normalize-package-data/test/fixtures/async.json
+++ b/node_modules/normalize-package-data/test/fixtures/async.json
@@ -33,4 +33,4 @@
"scripts": {
"test": "nodeunit test/test-async.js"
}
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/bcrypt.json b/node_modules/normalize-package-data/test/fixtures/bcrypt.json
index 56e6d81b3..2cf3ba9e5 100644
--- a/node_modules/normalize-package-data/test/fixtures/bcrypt.json
+++ b/node_modules/normalize-package-data/test/fixtures/bcrypt.json
@@ -53,4 +53,4 @@
"Sean McArthur <sean.monstar@gmail.com> (https://github.com/seanmonstar)",
"Fanie Oosthuysen <fanie.oosthuysen@gmail.com> (https://github.com/weareu)"
]
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/coffee-script.json b/node_modules/normalize-package-data/test/fixtures/coffee-script.json
index a0b60a9d3..6582289d1 100644
--- a/node_modules/normalize-package-data/test/fixtures/coffee-script.json
+++ b/node_modules/normalize-package-data/test/fixtures/coffee-script.json
@@ -32,4 +32,4 @@
"uglify-js": "~2.2",
"jison": ">=0.2.0"
}
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/http-server.json b/node_modules/normalize-package-data/test/fixtures/http-server.json
index 90c28863a..2ea55eb9a 100644
--- a/node_modules/normalize-package-data/test/fixtures/http-server.json
+++ b/node_modules/normalize-package-data/test/fixtures/http-server.json
@@ -4,11 +4,11 @@
"version": "0.3.0",
"author": "Nodejitsu <support@nodejitsu.com>",
"description": "a simple zero-configuration command-line http server",
- "contributors": [
+ "contributors": [
{
"name": "Marak Squires",
"email": "marak@nodejitsu.com"
- }
+ }
],
"bin": {
"http-server": "./bin/http-server"
@@ -45,9 +45,9 @@
"bundledDependencies": [
"union",
"ecstatic"
- ],
+ ],
"license": "MIT",
"engines": {
"node": ">=0.6"
}
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/movefile.json b/node_modules/normalize-package-data/test/fixtures/movefile.json
index 593387570..07af4acf4 100644
--- a/node_modules/normalize-package-data/test/fixtures/movefile.json
+++ b/node_modules/normalize-package-data/test/fixtures/movefile.json
@@ -18,4 +18,4 @@
"dependencies": {
"node-gyp": "~0.9.1"
}
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/no-description.json b/node_modules/normalize-package-data/test/fixtures/no-description.json
index 9ea70b6bf..8c481e1af 100644
--- a/node_modules/normalize-package-data/test/fixtures/no-description.json
+++ b/node_modules/normalize-package-data/test/fixtures/no-description.json
@@ -1,4 +1,4 @@
{
"name": "foo-bar-package",
"version": "0.0.1"
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/node-module_exist.json b/node_modules/normalize-package-data/test/fixtures/node-module_exist.json
index acc053825..b6786f430 100644
--- a/node_modules/normalize-package-data/test/fixtures/node-module_exist.json
+++ b/node_modules/normalize-package-data/test/fixtures/node-module_exist.json
@@ -23,4 +23,4 @@
"modules"
],
"license": "MIT"
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/npm.json b/node_modules/normalize-package-data/test/fixtures/npm.json
index 2262b3139..b4c704df9 100644
--- a/node_modules/normalize-package-data/test/fixtures/npm.json
+++ b/node_modules/normalize-package-data/test/fixtures/npm.json
@@ -132,4 +132,4 @@
"url": "https://github.com/isaacs/npm/raw/master/LICENSE"
}
]
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/request.json b/node_modules/normalize-package-data/test/fixtures/request.json
index 24189a551..4d58a95c2 100644
--- a/node_modules/normalize-package-data/test/fixtures/request.json
+++ b/node_modules/normalize-package-data/test/fixtures/request.json
@@ -36,4 +36,4 @@
"scripts": {
"test": "node tests/run.js"
}
-} \ No newline at end of file
+}
diff --git a/node_modules/normalize-package-data/test/fixtures/underscore.json b/node_modules/normalize-package-data/test/fixtures/underscore.json
index bfc8b3d26..e27cfd8c6 100644
--- a/node_modules/normalize-package-data/test/fixtures/underscore.json
+++ b/node_modules/normalize-package-data/test/fixtures/underscore.json
@@ -14,4 +14,4 @@
"test": "phantomjs test/vendor/runner.js test/index.html?noglobals=true"
},
"license" : "MIT"
-} \ No newline at end of file
+}