-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "pinterpolate",
"version": "0.2.3",
"description": "Simple string interpolation",
"main": "build/lib.js",
"module": "src/index.js",
"author": "Pratish Shrestha <pratishshr@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "webpack",
"test": "mocha test/**/*.spec.js --require ignore-styles --require @babel/polyfill --require @babel/register --recursive",
"test:watch": "mocha test/**/*.spec.js --require ignore-styles --require @babel/polyfill --require @babel/register --recursive -w"
},
"keywords": [
"format",
"interpolate",
"string format",
"string interpolate",
"string interpolation"
],
"repository": {
"type": "git",
"url": "https://github.com/pratishshr/pinterpolate"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"chai": "^4.1.2",
"ignore-styles": "^5.0.1",
"mocha": "^4.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"@babel/runtime": "^7.2.0"
},
"engines": {
"node": ">=8"
},
"types": "./index.d.ts"
}