-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "native-collections",
"version": "0.1.0",
"description": "A Collection library inspired by Laravel's Collections, that adds helpful methods to the native JavaScript Array object ",
"main": "/dist/native-collections.common.js",
"scripts": {
"test": "./node_modules/testem/testem.js ci",
"build-test": "./node_modules/webpack/bin/webpack.js --config=test.webpack.config.js",
"build": "./node_modules/webpack/bin/webpack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfhen/native-collections.git"
},
"keywords": [
"collections",
"arrays"
],
"author": "Alf Henderson",
"license": "MIT",
"bugs": {
"url": "https://github.com/alfhen/native-collections/issues"
},
"homepage": "https://github.com/alfhen/native-collectionss#readme",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"browserify": "^13.0.1",
"jasmine-core": "^2.4.1",
"jasmine-node": "^1.14.5",
"testem": "^1.9.1",
"webpack": "^1.13.1"
}
}