This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.6 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "datatype-expansion",
"version": "0.4.1",
"description": "Utility tool to expand a given RAML type and create a canonical form",
"main": "src/index.js",
"browser": "dist/datatype-expansion.js",
"repository": "raml-org/datatype-expansion",
"scripts": {
"lint": "standard",
"test-cov": "nyc --all --cwd src/ -x index.es6.js node_modules/mocha/bin/_mocha --report lcovonly -- -R dot --recursive --bail test/",
"test-spec": "_mocha -R spec --recursive --bail test/",
"test": "npm-run-all lint test-cov",
"build": "npm-run-all clean rollup",
"clean": "rimraf dist && mkdirp dist",
"rollup": "rollup -c rollup.config.js -f iife -m dist/datatype-expansion.js.map -n expansion -o dist/datatype-expansion.js",
"prepublishOnly": "npm run build"
},
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"dist/**"
]
},
"keywords": [
"raml",
"expansion",
"json",
"types"
],
"author": "Mulesoft",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.1.1",
"mkdirp": "^1.0.4",
"mocha": "^8.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.0",
"rollup": "^2.21.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-uglify": "^6.0.4",
"standard": "^14.3.4"
},
"dependencies": {
"lodash": "^4.17.19"
},
"files": [
"src/**",
"dist/**",
"LICENSE",
"test/**"
]
}