-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 959 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 959 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
32
33
34
35
36
37
38
{
"name": "dss-parser-variable",
"version": "0.3.0",
"description": "A variable parser for DSS (Documented Stylesheets)",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"release-patch": "./node_modules/.bin/mversion patch -m 'Released patch version v%s'",
"release-minor": "./node_modules/.bin/mversion minor -m 'Released minor version v%s'",
"release-major": "./node_modules/.bin/mversion major -m 'Released major version v%s'"
},
"keywords": [
"dss",
"css",
"parser"
],
"license": "MIT",
"devDependencies": {
"chai": "^1.9.2",
"dss": "^1.0.4",
"mocha": "^2.0.1",
"mversion": "^1.6.1"
},
"engines": {
"node": ">=0.9"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git@github.com:paulwib/dss-parser-variable.git"
},
"author": {
"name": "Paul Willoughby",
"url": "https://github.com/paulwib"
}
}