-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.07 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@ematipico/js-performance",
"version": "1.1.1",
"description": "A collection of utilities to measure the performance of your application",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_PATH=./src cross-env NODE_ENV=test ava",
"build:prod": "cross-env NODE_PATH=./src cross-env NODE_ENV=production rollup --config rollup.config.prod.js && node scripts/genDoc.js",
"build:dev": "cross-env NODE_PATH=./src cross-env NODE_ENV=development rollup --config rollup.config.dev.js -w",
"lint:fix": "standard --fix",
"lint": "standard --verbose | snazzy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ematipico/js-performance.git"
},
"keywords": [
"javascript",
"performance"
],
"author": "Emanuele Stoppa",
"license": "MIT",
"bugs": {
"url": "https://github.com/ematipico/js-performance/issues"
},
"homepage": "https://github.com/ematipico/js-performance#readme",
"devDependencies": {
"ava": "^0.24.0",
"babel-core": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-remove-console": "^6.8.5",
"babel-plugin-transform-remove-debugger": "^6.8.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.5.2",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.3",
"jasmine": "^2.8.0",
"jsdoc-to-markdown": "^3.0.3",
"karma": "^2.0.0",
"npm-check-updates": "^2.14.0",
"rollup": "^0.53.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.0.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"uglify-es": "^3.0.15"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
},
"standard": {
"globals": [
"performance"
],
"ignore": [
"*.min.js",
"js.performance.*"
]
}
}