|
2 | 2 | "name": "svg-inline-loader", |
3 | 3 | "version": "0.7.1", |
4 | 4 | "description": "Cleans up and inlines your SVG files into Webpack module.", |
| 5 | + "author": "Jaeho Lee <[email protected]>", |
| 6 | + "license": "MIT", |
5 | 7 | "main": "dist/cjs.js", |
| 8 | + "files": [ |
| 9 | + "dist" |
| 10 | + ], |
6 | 11 | "scripts": { |
7 | 12 | "test": "jest", |
8 | 13 | "test:integration": "karma start", |
9 | 14 | "webpack-defaults": "webpack-defaults", |
10 | | - "start": "yarn run serve:dev src", |
| 15 | + "start": "npm run build -- -w", |
11 | 16 | "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'", |
12 | 17 | "clean:dist": "del-cli dist", |
13 | 18 | "lint": "eslint --cache src test", |
14 | 19 | "lint-staged": "lint-staged", |
15 | | - "prebuild": "yarn run clean:dist", |
16 | | - "prepublish": "yarn run build", |
17 | | - "release": "yarn run standard-version", |
| 20 | + "prebuild": "npm run clean", |
| 21 | + "prepublish": "npm run build", |
| 22 | + "release": "standard-version", |
18 | 23 | "security": "nsp check", |
19 | 24 | "serve:dev": "nodemon $2 --exec babel-node", |
20 | 25 | "test:watch": "jest --watch", |
21 | 26 | "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", |
22 | | - "travis:coverage": "yarn run test:coverage", |
23 | | - "travis:lint": "yarn run lint && yarn run security", |
24 | | - "travis:test": "yarn run test" |
25 | | - }, |
26 | | - "author": "Jaeho Lee <[email protected]>", |
27 | | - "license": "MIT", |
28 | | - "repository": { |
29 | | - "type": "git", |
30 | | - "url": "[email protected]:sairion/svg-inline-loader.git" |
31 | | - }, |
32 | | - "keywords": [ |
33 | | - "svg", |
34 | | - "webpack", |
35 | | - "react", |
36 | | - "loader" |
37 | | - ], |
38 | | - "bugs": { |
39 | | - "url": "https://github.com/sairion/svg-inline-loader/issues" |
| 27 | + "travis:coverage": "npm run test:coverage -- --runInBand", |
| 28 | + "travis:lint": "npm run lint && npm run security", |
| 29 | + "travis:test": "npm run test -- --runInBand", |
| 30 | + "appveyor:test": "npm run test", |
| 31 | + "clean": "del-cli dist" |
40 | 32 | }, |
41 | | - "homepage": "https://github.com/sairion/svg-inline-loader", |
42 | 33 | "dependencies": { |
43 | 34 | "loader-utils": "^1.1.0", |
44 | 35 | "simple-html-tokenizer": "^0.1.1" |
45 | 36 | }, |
46 | 37 | "devDependencies": { |
47 | 38 | "babel-cli": "^6.24.0", |
48 | | - "babel-jest": "^19.0.0", |
| 39 | + "babel-jest": "^20.0.3", |
49 | 40 | "babel-plugin-transform-object-rest-spread": "^6.23.0", |
50 | 41 | "babel-polyfill": "^6.23.0", |
51 | | - "babel-preset-env": "^1.2.2", |
52 | | - "cross-env": "^3.2.4", |
53 | | - "del-cli": "^0.2.1", |
| 42 | + "babel-preset-env": "^1.6.0", |
| 43 | + "cross-env": "^5.0.1", |
| 44 | + "del-cli": "^1.1.0", |
54 | 45 | "eslint": "^3.18.0", |
55 | 46 | "eslint-config-webpack": "^1.2.0", |
56 | | - "eslint-plugin-import": "^2.2.0", |
57 | | - "jest": "^19.0.2", |
| 47 | + "eslint-plugin-import": "^2.7.0", |
| 48 | + "jest": "^20.0.4", |
58 | 49 | "json-loader": "^0.5.4", |
59 | 50 | "lint-staged": "^3.4.0", |
60 | 51 | "lodash": "^4.6.1", |
|
63 | 54 | "nsp": "^2.6.3", |
64 | 55 | "pre-commit": "^1.2.2", |
65 | 56 | "raw-loader": "^0.5.1", |
66 | | - "standard-version": "^4.0.0", |
67 | | - "webpack-defaults": "^0.4.5" |
| 57 | + "standard-version": "^4.2.0", |
| 58 | + "webpack": "^3.2.0", |
| 59 | + "webpack-defaults": "^1.5.0" |
68 | 60 | }, |
69 | 61 | "peerDependencies": { |
70 | | - "webpack": "^2.3.0" |
| 62 | + "webpack": "^2.0.0 || ^3.0.0" |
71 | 63 | }, |
72 | 64 | "engines": { |
73 | 65 | "node": ">= 4.3 < 5.0.0 || >= 5.10" |
74 | 66 | }, |
75 | | - "files": [ |
76 | | - "dist" |
| 67 | + "repository": { |
| 68 | + "type": "git", |
| 69 | + "url": "[email protected]:sairion/svg-inline-loader.git" |
| 70 | + }, |
| 71 | + "bugs": { |
| 72 | + "url": "https://github.com/sairion/svg-inline-loader/issues" |
| 73 | + }, |
| 74 | + "homepage": "https://github.com/sairion/svg-inline-loader", |
| 75 | + "keywords": [ |
| 76 | + "svg", |
| 77 | + "webpack", |
| 78 | + "react", |
| 79 | + "loader" |
77 | 80 | ], |
78 | 81 | "pre-commit": "lint-staged", |
79 | 82 | "lint-staged": { |
|
0 commit comments