-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "spreading",
"version": "0.1.4",
"description": "A spread module",
"main": "dist/index.js",
"scripts": {
"build": "yarn cleandist && NODE_ENV=production babel --minified ./src --out-dir ./dist",
"build:dev": "yarn cleandist && NODE_ENV=development babel ./src --out-dir ./dist",
"cleandist": "node cleandist.js",
"lint": "eslint src",
"test": "NODE_ENV=production jest --no-cache",
"test:watch": "NODE_ENV=production jest --watch --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mariolo1985/spreading.git"
},
"keywords": [
"object",
"rest",
"spread",
"rest spread",
"front-end",
"javascript"
],
"author": "MLo",
"license": "MIT",
"bugs": {
"url": "https://github.com/mariolo1985/spreading/issues"
},
"homepage": "https://github.com/mariolo1985/spreading#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"fs-extra": "^7.0.0",
"jest": "^23.6.0"
}
}