-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "@dominant/core",
"version": "0.1.17",
"description": "Dysfunctional JavaScript UI library",
"author": "Gui Prá",
"license": "ISC",
"keywords": [
"dominant"
],
"repository": {
"type": "git",
"url": "https://github.com/guiprav/dominant"
},
"main": "index.js",
"scripts": {
"test": "mocha index.spec.js",
"build": "cd demos; ./build.sh"
},
"babel": {
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-class-properties",
"./babelatrix",
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "d.el",
"pragmaFrag": "d.JsxFragment",
"throwIfNamespace": false
}
]
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/types": "^7.12.12",
"@types/chai": "^4.2.11",
"@types/jsdom": "^16.2.3",
"@types/mocha": "^8.0.0",
"@types/sinon": "^9.0.4",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"chai": "^4.2.0",
"d3-scale-chromatic": "^2.0.0",
"jsdom": "^16.3.0",
"mocha": "^8.0.1",
"perf-monitor": "^0.4.1",
"sinon": "^9.0.2"
},
"publishConfig": {
"access": "public"
}
}