-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "@pubcore/ui-resource",
"version": "1.0.4",
"description": "supports developer synchronizing config-keys used in source-code and default resource files",
"author": "pubcore",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:pubcore/ui-resource.git"
},
"scripts": {
"test": "nyc --reporter=text mocha --inspect --require @babel/register --require source-map-support --recursive",
"build": "babel src --out-dir js",
"prepare": "npm run build",
"watch": "babel --watch src --out-dir js",
"coverage": "nyc report --reporter=text-lcov"
},
"main": "js/uiResource.js",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-plugin-mocha": "^5.3.0",
"fakexmlhttprequest": "0.0.1",
"mocha": "^7.1.1",
"nyc": "^15.0.0"
},
"dependencies": {
"deep-equal": "^1.1.1",
"pubcore-http": "^1.0.8"
}
}