-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "flyt",
"version": "1.0.0",
"description": "Super-light javascript library to flatten arrays",
"main": "dist/flyt.js",
"module": "src/index.js",
"scripts": {
"dev": "webpack --env=dev --progress --profile --colors --watch",
"build": "webpack --env=build",
"build:min": "webpack -p",
"update:browser-build": "npm run build && cp dist/flyt.js examples/browser/",
"update:node-build": "npm run build && cp dist/flyt.js examples/node/ && node examples/node",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/one-aalam/flyt.git"
},
"keywords": [
"Javascript",
"ES6",
"Array"
],
"author": "Aftab Alam",
"license": "ISC",
"bugs": {
"url": "https://github.com/one-aalam/flyt/issues"
},
"homepage": "https://github.com/one-aalam/flyt#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2015-webpack": "^6.4.3",
"chai": "^3.5.0",
"eslint": "^3.16.0",
"eslint-loader": "^1.6.1",
"mocha": "^3.2.0",
"webpack": "^2.2.1"
}
}