-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 937 Bytes
/
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
{
"name": "module-igniter",
"version": "1.1.0",
"description": "Node module loader and executor.",
"main": "index.js",
"module": "src/index.js",
"repository": "https://github.com/ekoeryanto/module-igniter.git",
"author": "Eko Eryanto <[email protected]>",
"license": "MIT",
"files": [
"index.js",
"src"
],
"scripts": {
"prebuild": "npm test",
"build": "babel src -d .",
"test": "jest --env=node",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^22.4.3"
},
"eslintIgnore": [
"/index.js"
]
}