-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.77 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
71
72
73
74
{
"name": "@ignota/susy.js",
"version": "0.2.0",
"description": "JavaScript power tools for web layout.",
"main": "dist/js/index.js",
"module": "dist/es/index.js",
"repository": "https://github.com/ignota/susy.js.git",
"author": "The Ignota Media Corporation <hello@ignota.media>",
"license": "GPL-3.0",
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "concurrently npm:build:*",
"build:jsmodule": "cross-env NODE_ENV=production babel --out-dir=dist/js --delete-dir-on-start src",
"build:esmodule": "cross-env ES_MODULES=true NODE_ENV=production babel --out-dir=dist/es --delete-dir-on-start src",
"clean": "rimraf dist",
"lint": "eslint src spec",
"prepare": "yarn clean && yarn build",
"test": "cross-env NODE_ENV=test nyc mocha --opts spec/mocha.opts"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-plugin-autobind-class-methods": "^5.0.1",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-ramda": "^2.0.0",
"chai": "^4.2.0",
"chai-almost": "^1.0.1",
"concurrently": "^4.1.1",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rimraf": "^2.6.3"
},
"dependencies": {
"condense-whitespace": "^2.0.0",
"ramda": "^0.26.1"
}
}