-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 797 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 797 Bytes
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": "nucleun-module",
"version": "0.0.1",
"description": "Generic Module",
"main": "dist/nucleun-module.min.js",
"scripts": {
"dist": "webpack --config webpack.config.js",
"test": "mocha --compilers js:babel-core/register"
},
"keywords": [
"nucleun",
"generic",
"module"
],
"author": "João Pinto Neto <joaopintoneto@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "6.17.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.7",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-1": "6.16.0",
"chai": "3.5.0",
"eslint": "3.8.1",
"mocha": "3.1.2",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"webpack": "1.13.3"
},
"babel": {
"presets": [
"stage-1",
"es2015"
]
}
}