-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 841 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 841 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
29
30
31
{
"name": "parse-version-string",
"version": "1.0.1",
"description": "Parses a version string into its constituent parts",
"main": "index.js",
"scripts": {
"build": "babel --minified parse-version-string.js | uglifyjs -c -m -o index.js",
"test": "npm run test:ci -- --watch",
"test:ci": "mocha --require ./mocha.setup.js src/*.spec.js"
},
"keywords": [
"parse",
"version",
"semver"
],
"author": "Graham King <gking2224@gmail.com>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-uglify": "^1.0.2",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"uglify-js": "^3.3.21"
},
"repository": {
"type": "git",
"url": "https://github.com/alphaeadevelopment/parse-version-string"
}
}