-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "@cocopina/singleton",
"version": "1.2.1",
"description": "A truly global, isomorphoic, JavaScript singleton class",
"author": "Sahar Brodbeker <saharonb@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/sahariko/singleton.git"
},
"homepage": "https://github.com/sahariko/singleton",
"main": "dist/index.js",
"scripts": {
"test": "jest -c configuration/jest.config.js",
"test:server": "npm run test -- src --env node",
"lint": "eslint .",
"build": "webpack --config configuration/webpack.config"
},
"keywords": [
"singleton",
"isomorphic"
],
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"eslint": "^5.9.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.12.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@cocopina/environment": "^1.0.2"
}
}