-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.57 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "markty-toml",
"description": "Nano TOML parser for Javascript.",
"version": "0.1.1",
"main": "dist/marktytoml.js",
"module": "dist/marktytoml.es.js",
"jsnext:main": "dist/marktytoml.es.js",
"umd:main": "dist/marktytoml.umd.js",
"scripts": {
"build": "npm-run-all --silent clean rollup -p minify:* -s size",
"clean": "rimraf dist && mkdirp dist",
"rollup": "rollup -c",
"minify:cjs": "uglifyjs $npm_package_main -cm toplevel -o $npm_package_main -p relative --in-source-map ${npm_package_main}.map --source-map ${npm_package_main}.map",
"minify:umd": "uglifyjs $npm_package_umd_main -cm -o $npm_package_umd_main -p relative --in-source-map ${npm_package_umd_main}.map --source-map ${npm_package_umd_main}.map",
"size": "echo \"Gzipped Size: $(strip-json-comments --no-whitespace $npm_package_main | gzip-size --raw)\"",
"test": "eslint src test && mocha --compilers babel-register",
"prepublish": "npm run -s build",
"release": "npm run -s build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"authors": [
"Jonarod <[email protected]>"
],
"files": [
"src",
"dist"
],
"homepage": "https://github.com/Jonarod/markty-TOML",
"repository": {
"type": "git",
"url": "git+https://github.com/Jonarod/markty-TOML.git"
},
"license": "MIT",
"keywords": [
"toml",
"parser",
"javascript"
],
"dependencies": {
"markty": "0.0.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"gzip-size-cli": "^3.0.0",
"mkdirp": "^0.5.1",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"rollup": "^1.27.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"strip-json-comments-cli": "^1.0.1",
"uglify-js": "^3.6.9"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"browser": true,
"mocha": true,
"node": true,
"es6": true
},
"globals": {
"expect": true
},
"rules": {
"no-console": 1,
"no-cond-assign": 0,
"no-regex-spaces": 0,
"semi": [
2,
"never"
]
}
},
"bugs": {
"url": "https://github.com/Jonarod/markty-TOML/issues"
},
"directories": {
"test": "test"
},
"author": "Jonarod"
}