forked from paulirish/devtools-timeline-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 KB
/
package.json
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
{
"name": "devtools-timeline-model",
"version": "1.4.0",
"description": "Parse raw trace data into the Chrome DevTools' structured profiling data models",
"license": "Apache-2.0",
"repository": "paulirish/devtools-timeline-model",
"author": {
"name": "Paul Irish",
"url": "github.com/paulirish"
},
"scripts": {
"test": "npm run unit && npm run lint",
"unit": "mocha $(find ./test -name '*.js') --timeout 10000",
"lint": "eslint .",
"watch": "find . -name \"*.js\" | grep -v \"node_modules\" | grep -v \"test\" | entr npm run test",
"watchlint": "find . -name \"*.js\" | grep -v \"node_modules\" | grep -v \"test\" | entr npm run lint"
},
"main": "index.js",
"keywords": [
"devtools",
"chrome",
"performance",
"profiling",
"timeline"
],
"dependencies": {
"chrome-devtools-frontend": "1.0.445684",
"resolve": "1.1.7"
},
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-google": "^0.4.0",
"mocha": "^2.3.3",
"speedline": "0.1.2"
}
}