|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.4 KB
|
| Line | |
|---|
| 1 | {
|
|---|
| 2 | "name": "identity-obj-proxy",
|
|---|
| 3 | "version": "3.0.0",
|
|---|
| 4 | "description": "an identity object using ES6 proxies",
|
|---|
| 5 | "main": "src/index.js",
|
|---|
| 6 | "scripts": {
|
|---|
| 7 | "lint": "eslint src",
|
|---|
| 8 | "test": "node --harmony_proxies node_modules/.bin/jest",
|
|---|
| 9 | "coverage": "node --harmony_proxies node_modules/.bin/jest --coverage",
|
|---|
| 10 | "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
|
|---|
| 11 | "prepublish": "npm run lint && npm run test"
|
|---|
| 12 | },
|
|---|
| 13 | "engines": {
|
|---|
| 14 | "node": ">=4"
|
|---|
| 15 | },
|
|---|
| 16 | "repository": {
|
|---|
| 17 | "type": "git",
|
|---|
| 18 | "url": "git+https://github.com/keyanzhang/identity-obj-proxy.git"
|
|---|
| 19 | },
|
|---|
| 20 | "keywords": [
|
|---|
| 21 | "proxy",
|
|---|
| 22 | "proxies",
|
|---|
| 23 | "identity",
|
|---|
| 24 | "jest",
|
|---|
| 25 | "mock"
|
|---|
| 26 | ],
|
|---|
| 27 | "author": "Keyan Zhang <root@keyanzhang.com> (http://keya.nz)",
|
|---|
| 28 | "license": "MIT",
|
|---|
| 29 | "bugs": {
|
|---|
| 30 | "url": "https://github.com/keyanzhang/identity-obj-proxy/issues"
|
|---|
| 31 | },
|
|---|
| 32 | "homepage": "https://github.com/keyanzhang/identity-obj-proxy#readme",
|
|---|
| 33 | "dependencies": {
|
|---|
| 34 | "harmony-reflect": "^1.4.6"
|
|---|
| 35 | },
|
|---|
| 36 | "devDependencies": {
|
|---|
| 37 | "babel-core": "^6.11.4",
|
|---|
| 38 | "babel-jest": "^14.1.0",
|
|---|
| 39 | "babel-preset-es2015": "^6.9.0",
|
|---|
| 40 | "babel-preset-stage-0": "^6.5.0",
|
|---|
| 41 | "coveralls": "^2.11.12",
|
|---|
| 42 | "eslint": "^3.2.2",
|
|---|
| 43 | "eslint-config-airbnb-base": "^5.0.1",
|
|---|
| 44 | "eslint-plugin-import": "^1.12.0",
|
|---|
| 45 | "jest-cli": "^14.1.0"
|
|---|
| 46 | },
|
|---|
| 47 | "jest": {
|
|---|
| 48 | "automock": false,
|
|---|
| 49 | "testPathDirs": [
|
|---|
| 50 | "<rootDir>/src"
|
|---|
| 51 | ]
|
|---|
| 52 | }
|
|---|
| 53 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.