-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 761 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 761 Bytes
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
{
"name": "coerce-string",
"version": "0.1.0",
"description": "A utility to make a string conform to a pattern",
"main": "dist/Coerce",
"jsnext:main": "src/Coerce",
"scripts": {
"test": "mocha ./tests/ --compilers js:babel-core/register --recursive",
"build": "webpack ./src/Coerce.js ./dist/Coerce.js"
},
"keywords": [
"mask",
"string",
"pattern"
],
"author": "Jamal Neufeld",
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"expect": "^1.20.2",
"mocha": "^3.0.2",
"webpack": "^1.13.2"
}
}