-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 992 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 992 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
{
"name": "circular-list",
"version": "1.0.4",
"description": "Create a circularly-linked list",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf node_modules && rm -rf coverage && rm -rf platoreport/*",
"analyse": "./node_modules/.bin/plato -r -d platoreport -x .json lib",
"test": "./node_modules/.bin/grunt build-instrumented && ./node_modules/.bin/buster-test --reporter xml > results.xml",
"ci": "npm run clean; npm install; npm test; npm run analyse"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-browserify": "~1.2.1",
"grunt-istanbul": "~0.2.1",
"buster": "~0.6.12",
"buster-istanbul": "~0.1.10",
"plato": "~0.6.1"
},
"repository": {
"type": "git",
"url": "http://git.svc.ft.com/labsmisc/circular-list"
},
"author": "Matt CG",
"license": "All rights reserved by Financial Times Ltd.",
"readmeFilename": "README.md",
"gitHead": "3e2b463a7b03c8db1a3712051c8bfb586dfa62f4"
}