-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1006 Bytes
/
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
{
"name": "sssa",
"version": "0.4.1",
"description": "A toy CSS preprocessor implementation with SASS like grammar.",
"main": "dest/bundle.js",
"typings": "types/index.d.ts",
"bin": {
"sssa": "bin/index.js"
},
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"watch": "./node_modules/.bin/rollup -c -w",
"prestart": "npm run build",
"start": "node dest/bundle.js",
"test": "./node_modules/.bin/ava -s"
},
"files": [
"bin",
"dest/*.js",
"types/*.ts"
],
"keywords": [
"rollup"
],
"author": "differui<[email protected]>",
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-typescript": "^0.8.1",
"rollup-watch": "^3.2.2",
"typescript": "^2.8.1"
},
"dependencies": {
"get-stdin": "^5.0.1",
"lex": "^1.7.9",
"meow": "^3.7.0"
}
}