-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "yawn-yaml",
"version": "1.5.0",
"description": "YAML parser that preserves comments and styling",
"main": "dist/yawn.js",
"dependencies": {
"js-yaml": "^3.14.1",
"lodash": "^4.17.21",
"yaml-js": "^0.2.3"
},
"devDependencies": {
"chai": "^3.3.0",
"babel": "^5.8.23",
"babelify": "^6.3.0",
"browserify": "^16.5.1",
"browserify-global-shim": "^1.0.0",
"eslint": "^1.5.1",
"mocha": "^8.1.3",
"mocha-eslint": "^1.0.0"
},
"scripts": {
"test": "mocha --compilers js:babel/register",
"browserify": "browserify --debug src/index.js -s YAWN -t [ babelify --sourceMapRelative . ] --outfile dist/yawn.js",
"commonjs": "babel src --out-dir cjs",
"prepublish": "npm run browserify && npm run commonjs"
},
"browserify": {
"transform": [
"browserify-global-shim"
]
},
"browserify-global-shim": {
"yaml-js": "yaml",
"js-yaml": "jsyaml",
"lodash": "_"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohsen1/yawn.git"
},
"keywords": [
"yaml"
],
"author": "Mohsen Azimi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohsen1/yawn/issues"
},
"homepage": "https://github.com/mohsen1/yawn#readme"
}