-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "js-library-starterkit",
"libraryName": "jsStarterkit",
"version": "1.0.0",
"description": "It's a starter kit to develop javascript libraries.",
"main": "dist/js-library-starterkit.min.js",
"scripts": {
"test": "NODE_ENV=test mocha ./test/**/*.js --require babel-core/register",
"build": "npm run build:prod && npm run build:dev",
"build:prod": "WEBPACK_ENV=prod webpack",
"build:dev": "WEBPACK_ENV=dev webpack --progress --colors"
},
"keywords": [
"starterkit",
"starter",
"js",
"js library",
"nodejs library"
],
"repository": {
"type": "git",
"url": "git+https://github.com/melihkorkmaz/js-library-starterkit.git"
},
"author": "Melih Korkmaz - [email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/melihkorkmaz/js-library-starterkit/issues"
},
"homepage": "https://github.com/melihkorkmaz/js-library-starterkit",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.0",
"webpack": "^3.11.0"
},
"dependencies": {
"mocha": "^5.0.1"
}
}