-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 KB
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
{
"name": "@microstates/lab",
"version": "0.0.1",
"description": "Dangerous experiments with subatomic particles",
"keywords": [],
"homepage": "https://github.com/microstates/lab#readme",
"bugs": {
"url": "https://github.com/microstates/lab/issues"
},
"license": "MIT",
"author": "Charles Lowell <cowboyd@frontside.io>",
"files": [
"src",
"README.md",
"dist"
],
"main": "dist/microstates-lab.cjs.js",
"module": "dist/microstates-lab.es.js",
"repository": "git+ssh://git@github.com/microstates/lab.git",
"scripts": {
"lint": "eslint ./",
"test": "mocha --recursive -r tests/setup tests",
"build": "rollup -c rollup.config.js",
"coverage": "nyc --reporter=html --reporter=text npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"babel-eslint": "^10.0.1",
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"eslint-plugin-prefer-let": "^1.0.1",
"expect": "^24.1.0",
"mocha": "^7.0.1",
"nyc": "^13.1.0",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.1"
},
"dependencies": {
"funcadelic": "^0.5.4"
},
"nyc": {
"exclude": [
"**/tests",
"examples",
"src/query.js"
]
}
}