source: node_modules/minim/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.7 KB
Line 
1{
2 "name": "minim",
3 "version": "0.23.8",
4 "description": "A library for interacting with JSON through Refract elements",
5 "main": "lib/minim.js",
6 "scripts": {
7 "prepare": "npm run build",
8 "build": "npm run build:cjs && npm run build:browser",
9 "build:cjs": "babel lib --out-dir dist/lib",
10 "build:browser": "browserify -d -s minim -t [ babelify ] -o dist/minim.js dist/lib/minim.js",
11 "coverage": "istanbul cover _mocha -- -R spec --recursive --require babel-register",
12 "coveralls": "coveralls <coverage/lcov.info",
13 "lint": "eslint .",
14 "precoveralls": "npm run coverage",
15 "test": "mocha",
16 "test:browser": "karma start"
17 },
18 "repository": {
19 "type": "git",
20 "url": "http://github.com/refractproject/minim"
21 },
22 "keywords": [
23 "JSON",
24 "MSON",
25 "Refract"
26 ],
27 "author": "Stephen Mizell",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/refractproject/minim/issues"
31 },
32 "homepage": "https://github.com/refractproject/minim",
33 "devDependencies": {
34 "babel-cli": "^6.26.0",
35 "babel-core": "^6.26.3",
36 "babel-preset-env": "^1.7.0",
37 "babel-register": "^6.26.0",
38 "babelify": "^8.0.0",
39 "browserify": "^16.2.3",
40 "chai": "^4.2.0",
41 "coveralls": "^3.0.1",
42 "eslint": "^5.14.1",
43 "eslint-config-airbnb-base": "^13.1.0",
44 "eslint-plugin-import": "^2.16.0",
45 "fantasy-land": "^3.5.0",
46 "istanbul": "^0.4.5",
47 "karma": "^4.0.0",
48 "karma-browserify": "^6.0.0",
49 "karma-chai": "^0.1.0",
50 "karma-firefox-launcher": "^1.1.0",
51 "karma-mocha": "^1.3.0",
52 "karma-mocha-reporter": "^2.2.5",
53 "karma-sinon": "^1.0.4",
54 "mocha": "^6.0.1",
55 "sinon": "^8.1.0"
56 },
57 "dependencies": {
58 "lodash": "^4.15.0"
59 },
60 "engines": {
61 "node": ">=6"
62 }
63}
Note: See TracBrowser for help on using the repository browser.