12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "stringifier",
- "description": "Yet another stringify function",
- "version": "1.4.0",
- "author": {
- "name": "Takuto Wada",
- "email": "takuto.wada@gmail.com",
- "url": "https://github.com/twada"
- },
- "bugs": "https://github.com/twada/stringifier/issues",
- "dependencies": {
- "core-js": "^2.0.0",
- "traverse": "^0.6.6",
- "type-name": "^2.0.1"
- },
- "devDependencies": {
- "browserify": "^13.0.0",
- "del": "^2.0.2",
- "gulp": "^3.9.0",
- "gulp-derequire": "^2.1.0",
- "gulp-dereserve": "^0.2.1",
- "gulp-mocha": "^2.1.3",
- "gulp-mocha-phantomjs": "^0.11.0",
- "gulp-util": "^3.0.6",
- "gulp-webserver": "^0.9.1",
- "licensify": "^3.1.0",
- "mocha": "^2.3.3",
- "vinyl-source-stream": "^1.1.0"
- },
- "files": [
- "CHANGELOG.md",
- "README.md",
- "index.js",
- "strategies.js",
- "build/stringifier.js",
- "package.json"
- ],
- "homepage": "https://github.com/twada/stringifier",
- "keywords": [
- "stringify"
- ],
- "license": "MIT",
- "main": "index.js",
- "repository": {
- "type": "git",
- "url": "git://github.com/twada/stringifier.git"
- },
- "scripts": {
- "preversion": "npm test",
- "version": "npm run build && git add -A build",
- "bower": "bower install --config.interactive=false",
- "build": "npm prune && npm dedupe && gulp bundle",
- "lint": "jshint index.js strategies.js",
- "es6": "./test/travis_es6.sh",
- "unit": "npm run es6 && gulp unit",
- "test": "npm run es6 && gulp test"
- }
- }
|