File tree Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " ultimate-string-replace" ,
3
+ "description" : " JS module to improve string.prototype.replace" ,
4
+ "main" : " ./build/bundle.js" ,
5
+ "authors" : [
6
+ " Víctor Lara Ortega <victorlara@outlook.com>"
7
+ ],
8
+ "license" : " MIT" ,
9
+ "keywords" : [
10
+ " string" ,
11
+ " es6" ,
12
+ " replace"
13
+ ],
14
+ "homepage" : " https://github.com/vlaraort/ultimate-string-replace" ,
15
+ "ignore" : [
16
+ " **/.*" ,
17
+ " node_modules" ,
18
+ " bower_components" ,
19
+ " test" ,
20
+ " tests"
21
+ ]
22
+ }
Original file line number Diff line number Diff line change 3
3
"version" : " 1.0.0" ,
4
4
"description" : " JS module to improve string.prototype.replace" ,
5
5
"main" : " ./build/bundle.js" ,
6
- "module" : " ultimate-string-replace.js" ,
6
+ "module" : " /src/ ultimate-string-replace.js" ,
7
7
"scripts" : {
8
8
"build" : " webpack" ,
9
9
"test" : " nyc mocha --require babel-core/register" ,
16
16
"coverage:codecov" : " codecov"
17
17
},
18
18
"author" : " Víctor Lara Ortega <victorlara@outlook.com>" ,
19
- "license" : " ISC " ,
19
+ "license" : " MIT " ,
20
20
"devDependencies" : {
21
21
"babel-core" : " ^6.26.3" ,
22
22
"babel-preset-es2015" : " ^6.24.1" ,
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { expect } from 'chai' ;
2
2
import { it , describe } from 'mocha' ;
3
- import ultimateStringReplace from '../ultimate-string-replace' ;
3
+ import ultimateStringReplace from '../src/ ultimate-string-replace' ;
4
4
5
5
describe ( 'string-replace' , ( ) => {
6
6
it ( 'should wrap case - insensitive' , ( ) => {
You can’t perform that action at this time.
0 commit comments